Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #4K
~5K People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Forums
Favorite Tags

6 Posted Topics

Member Avatar for JennyK

So you do not need to shuffle multidimensional array (this implies that elements of 'subarrays' also need to be shuffled) you jsut need to shuffle elements of the 'parent' array. This can be done by standard PHP function[URL="http://php.net/manual/en/function.shuffle.php"] shuffle()[/URL] [CODE] $original_items = array( array(1,'stuff','info',response1,'info',response2'), array(2,'stuff','info',response1,'info',response2'), array(3,'stuff','info',response1,'info',response2'), array(4,'stuff','info',response1,'info',response2'), ); shuffle($original_items); [/CODE]

Member Avatar for cgi.net
0
3K
Member Avatar for Krstevski

Hi, I do not know if your friend is real author of the idea, because it is not new. (I've read similar articles at least couple of times in different places, but I will not argue -- maybe he is the original author). Yor solution will protect form from only …

Member Avatar for Member #851298
0
1K
Member Avatar for samsons17

It is quite enough to put a new line (or space) before 1st <?php to get this error or add a newline after last ?> The prob is -- that is quite invisible (especially new line after last ?>) Most likelly you have fixed the issue by letting your IDE …

Member Avatar for tyutmonster
0
324
Member Avatar for samsons17

LoL = you have had [URL="http://www.daniweb.com/forums/thread286843.html?utm_source=vBMail&utm_medium=email&utm_campaign=ThreadbitDigest"]already posted this[/URL] ) why double posting?

Member Avatar for YuriyHorobey
0
353
Member Avatar for YuriyHorobey

Hi all, thanks for reading my post ) My name is Yuriy Horobey, I am developing web for more than 10 years. There are some same geeks like me arround me, so I am forming my company, registering it and searching for partners. What do we offer? -- Full cycle …

Member Avatar for YuriyHorobey
0
279
Member Avatar for ben.matthews18

my small 5c: create table Users( ID int(11) auto_increment primary key, Email varchar (30) not null, Password varchar(15) not null, Firstname varchar(30) not null, Lastname varchar(30) not null, ); after you execute query you can retrieve the ID using [URL="http://php.net/manual/en/function.mysql-insert-id.php"]mysql_insert_id()[/URL] If you're going to do DB operation in more professional …

Member Avatar for coreyavis
0
121

The End.