Search found 6 matches
- Mon Nov 08, 2004 5:04 pm
- Forum: PHPDN
- Topic: setcookie works on rh, worked on win, now not working n win
- Replies: 1
- Views: 10486
setcookie works on rh, worked on win, now not working n win
http://www.jiggy1.com/php_info.php http://buildit.samswebclub.com/php_info.php Compare the 2 PHP versions. The first is RH, the second is Win. I have a simple code for logging people in: if($username != "" and $password != "") { $chk_login = "select * from admin wh...
- Wed Aug 04, 2004 1:00 am
- Forum: PHP - Code
- Topic: store array
- Replies: 4
- Views: 1526
delayed thanks!
hey i know its been some time but i just got back to working on this thing.
looks like your suggestions payed off: serialize(), store data, retrieve data, unserialize() ... now i can work with it.
thanks!!!!!
looks like your suggestions payed off: serialize(), store data, retrieve data, unserialize() ... now i can work with it.
thanks!!!!!
- Thu Jul 22, 2004 2:06 am
- Forum: PHP - Code
- Topic: store array
- Replies: 4
- Views: 1526
thkx
thanks - i dont think im storing a string ... im storing ... i have checkboxes with the same name, when submitted php creates an array, correct? that's what's stored. i'll try what you recommended and that sounds like it'll work. sorry for not using <?php ?> -- this being a PHP site i thought i coul...
- Thu Jul 22, 2004 1:37 am
- Forum: PHP - Code
- Topic: store array
- Replies: 4
- Views: 1526
store array
feyd | Please use tags when posting code. Read: [url=http://forums.devnetwork.net/viewtopic.php?t=21171]Posting Code in the Forums[/url][/color] can you store an array in a mysql db, and retrieve it and use it as an array? (does the field need to be TEXT or something special?) when i use phpmyadmin...
- Mon Jul 12, 2004 10:57 am
- Forum: PHP - Code
- Topic: [SOLVED] need php eval help
- Replies: 2
- Views: 1087
thanks
thanks for your help, it works and i successfully modified it to work with what i need. i also read up on how to properly post code (my apologies)[/php_man]
- Sun Jul 11, 2004 11:55 pm
- Forum: PHP - Code
- Topic: [SOLVED] need php eval help
- Replies: 2
- Views: 1087
need php eval help
trying to use eval() for php but am having difficulties figuring out its syntax, or maybe using the wrong function in CF i can do this: <cfset x='abc'> <cfset y='2'> <cfset z='3'> <cfoutput> #x# is the same as #evaluate(x)# and #abc_2# is the same as #evaluate(x & '_' & '2')# <!--- The value...