₦airaland Forum

Welcome, Guest: RegisterLoginWith GoogleTrendingRecentNew

Stats: 3,325,077 members, 8,420,180 topics. Date: Thursday, 04 June 2026 at 01:01 PM

Toggle theme

Dhtmlextreme's Posts

Nairaland ForumDhtmlextreme's ProfileDhtmlextreme's Posts

1 2 3 4 (of 4 pages)

WebmastersRe: Pro Web Designer Wanted by dhtmlextreme(m): 12:21am On Jul 23, 2014
Just like some people that will come, and say they need proposal only - only for them to hijack your proposal and use it to get the job. . .
I never believe all these kinda posts, i was watching quietly from the start, i knew it was bound to be disaster. I have outgrown jumping at these kinda offers - i will rather be trolling.
No quality thread to even troll on again these days, the thing tire person sef.
ProgrammingRe: Apple Buys Hopstop.com From Nigerian Entrepreneur Chinedu Echeruo For $1 Billion by dhtmlextreme(m): 9:55pm On Jul 22, 2014
In conclusion: dhtml - will move to u.s (my programming skills are wasting here)
ProgrammingRe: Sorting Out A Simple Text Dictionary With PHP by dhtmlextreme(m): 8:53pm On Jul 22, 2014
@asalimpo, this code has been tested in latest version of PHP and has no errors (in fact it should work in all versions of php 3,4,5). If you do not understand the PHP rules that are involved, well, I can attempt to explain.

PHP/Javascript are different from C and Java where you need to declare a variable before use, and you dont have to stick to a particular type

$y='Seun';
$y=100.50;
$y=5;
$y=Array();
100% correct php code.

$y=trim(file_get_contents( => $y is created and assigned value at this point by the result of the function trim which is a string variable (standard php rule). As long as i do not attempt to use a variable such as y before declaration, i should never get an error in php

Following the same principles:
$lines = explode('\n',$y) => explode will split a string into an array, so $lines is created as an array and assigned the result

$l = explode('-',$line') -> this will create an array of a particular line of text, the array has a key/value (word/meaning) - both key and value are strings.

$l[0] will give the key of the array as explained above.

arr[$l[0]] - will give the value of the array since array(key) is used

count($l) will give the size of the array as you already guessed.

As for your procedural abominations, i dont know what you are talking about. I write standard codes as a PHP expert (both oop and procedural when required), but this is a very simple code as far as i am concerned.
WebmastersRe: Feels Good 2 B Back by dhtmlextreme(m): 3:24pm On Jun 27, 2014
rutchiekens: Its bad to be back. A lot of usernames and emails are missing... I wonder how *dhtml would feel about his lost aliases. Unless he created them before Jan 10, 2014.
Why didn't NL backup daily.
ding
WebmastersRe: Is Seun Getting It Wrong? by dhtmlextreme(m): 4:38pm On Aug 31, 2013
teemy: just look past the mod's lapses and be the bigger man else you might end up like others looking for a bone to pick with seun always.
Nay, i aint picking on seun, just testing testing to see if i will get banned again
WebmastersRe: CSCS Integration Into A Third Party Website by dhtmlextreme(m): 4:36pm On Aug 31, 2013
Hmn thanks for your statements. . .but i aint got a full response yet
WebmastersRe: Nigerian Stock Exchange Api, Rss Feeds & Widgets :: by dhtmlextreme(m): 5:15am On Aug 31, 2013
Gracias!
WebmastersRe: Is Seun Getting It Wrong? by dhtmlextreme(m): 10:32pm On Aug 30, 2013
This market is already self-destructing as it seems, it is a matter of time. . .unless measures are taken
WebmastersRe: Is Seun Getting It Wrong? by dhtmlextreme(m): 9:16pm On Aug 30, 2013
In fact, i hate that stoopid and clueless boy to be precise, and sometimes he needs to be yabbed too. But not like this really. . .
WebmastersRe: Is Seun Getting It Wrong? by dhtmlextreme(m): 9:00pm On Aug 30, 2013
Yeah, the censorship rubbish, plus *dhtml seem to have been banned.
WebmastersRe: Show Us The Best Website Your Have Ever Seen. by dhtmlextreme(m): 7:53pm On Aug 30, 2013
why are people posting Nigerian sites only? does the thread say Nigerian sites only?
WebmastersRe: I Want To Become An Ethical Hacker by dhtmlextreme(m): 7:34pm On Aug 30, 2013
This one na new one o! Another pro-hacker on the loose!
WebmastersRe: Nigerian Stock Exchange Api, Rss Feeds & Widgets :: by dhtmlextreme(m): 7:20pm On Aug 30, 2013
Nay, i have altered the documentations and the location of the stuffs, to get the up-to-date information which is working well, please check www..net or http://.biz/nigerian-stock-exchange

Sorry for the delay in sending this message.
WebmastersRe: CSCS Integration Into A Third Party Website by dhtmlextreme(m): 6:58pm On Aug 30, 2013
All the widgets and APIs are automatically updated, i cannot explain the trade secrets in public. These widgets have been running now since 20011 https://www.nairaland.com/816057/nigerian-stock-exchange-api-rss - i must be pretty jobless to be updating it manually.

As for your cscs integration, you can contact me through my site or facebook link make we talk.
WebmastersRe: Nigerian Stock Exchange Api, Rss Feeds & Widgets :: by dhtmlextreme(m): 6:57pm On Aug 30, 2013
Its been a long time. . .
ProgrammingRe: Nse (nigerian Stock Exchange) Api Javascript Sdk by dhtmlextreme(m): 6:55pm On Aug 30, 2013
I hope no one still have problem with integration into joomla?
WebmastersRe: @yawatide, Feyisara And Co. Abeg, Help Me To Review/criticize My Blog by dhtmlextreme(m): 6:47am On Sep 05, 2011
ProgrammingRe: Creating A New Face For Nl by dhtmlextreme(m): 6:46am On Sep 05, 2011
ProgrammingRe: Simple Php Quiz: Why Will This Code Not Work If You Are Uploading Files? by dhtmlextreme(m): 6:47pm On Jul 31, 2011
Of course. .
WebmastersRe: 30,000 Websites Project - City Development by dhtmlextreme(m): 5:00pm On Jul 31, 2011
Babes!!!!
WebmastersRe: Php Security Guide: Form Processing by dhtmlextreme(m): 11:31am On Jul 31, 2011
I will add another one here again.

If you have a website where people register, and you decide to say that,
people should register with usernames of 6 characters - then you should validate
this on the backend too no matter what you do on the frontend.

Nairaland for instance: the registration form does not allow a username of more than
10 characters i.e dhtmlextre - this is 10 characters,

Normally, you should not be able to use in full as a username.
This is not a security breach, but what i am saying is that you should try to validate
stuffs like that properly for consistency.

If you make a field such as email field, try to verify what is in it is at least typed like an email
before you store it away in your database - and store junks.

Spam filter is another thing - dont buy a spam filter in alaba market!
WebmastersRe: Dhtmlframework Testing :: 8th Update [cms interlude] by dhtmlextreme(m): 11:25am On Jul 30, 2011
Added some cms stuffs to it. I was banned while trying to explain a bit here how it works.
WebmastersRe: Javascript Or Php by dhtmlextreme(m): 8:07pm On Jul 25, 2011
binkabir:
^^^^^ that rite shocked shocked shocked
i think we should flog him

But seriously, you need to be grounded well in html,css and javascript before going into
php / mysql programming.
These days, you dont need to know too much core javascript (unlike old schools like us),
just go into dojo or jquery libraries.
WebmastersRe: 30,000 Websites Project - City Development by dhtmlextreme(m): 8:03pm On Jul 25, 2011
I wonder if
WebmastersRe: Dhtmlframework Testing :: 8th Update [cms interlude] by dhtmlextreme(m): 8:02pm On Jul 25, 2011
That is muy fantastico amigo. MVC eh? Now i wonder if this my framework is MVC. Just kidding, of course it uses mvc.
I had all those bugs too whenever i do them CMS stuffs, i get stuck sometimes and start tweaking and tweaking until
i vex and had to do this one.
I have fixed so many many bugs since the last upload yesterday. Right now, i am working on the users module.

Already, you can make registrations at the backend, right now, i am doing the frontend registration, and also checking
to make sure all those roles and permissions are working as they should.

And also crosschecking some other areas. I have been working on the WYSIWYG interface. And that will come in as a module
immediately after the users module.
WebmastersRe: Javascript Or Php by dhtmlextreme(m): 1:56pm On Jul 25, 2011
@op, i was online when you posted your thread. . . .i refused to say anything because you have not given
us any proof yet that you even know H-T-M-L and madre de dio, now you want to venture into D-H-T-M-L realm?
WebmastersRe: 30,000 Websites Project - City Development by dhtmlextreme(m): 1:56am On Jul 25, 2011
My framework can quitely construct sites quite alright. But caramba! How do you ehm get that amount of contents in 4 horas hours?
Unless you . . . . never mind. . . .i think i have an idea of the how.

In my earlier statement, i was talking about the site layout and stuffs. Not the billions of contents! Maybe just maybe i might start thinking
of building a content/users/babes generation framework.

Hey, i need 1000 babes registered en cinqo minutos - and hey presto - they are there! Complete with profile pictures and photo albums containing
billions of photos (uploaded like 10 years ago) - to complete the effect
WebmastersRe: Dhtmlframework Testing :: 8th Update [cms interlude] by dhtmlextreme(m): 10:58pm On Jul 24, 2011
My previous post before i was banned - http://www.dhtmlkits.com/modules/meta/post.html
WebmastersRe: 30,000 Websites Project - City Development by dhtmlextreme(m): 10:54pm On Jul 24, 2011
Caramba! How you manage to escribe ehm cuantos 50million libros es still maravillosa a mi mismo!
Nairaland GeneralRe: Mister Seun, *dhtml is Back, Oya Come Here Make We Settle Our Matterz Make Peace Reign For The Land by dhtmlextreme(m): 1:53am On Feb 09, 2010
mama-gee:
^^So you've been unbanned? grin grin grin
Now where did i ever say that? it seems you live on NL, i dont understand how you manage to be in so many
places at the same time.

1 2 3 4 (of 4 pages)