Jump to content

exoskeleton

Members
  • Posts

    10
  • Joined

  • Last visited

    Never

Everything posted by exoskeleton

  1. [quote author=JustinMs66@hotmail.com link=topic=114453.msg466216#msg466216 date=1163195211] ...please? what are $A and $B in that code? [/quote] it's just the variable holding the value of an array sir, you can change it whatever you want
  2. i just assumed that he knows the next step sir, sorry....
  3. yah, this will work! [quote author=fiddy link=topic=114493.msg465848#msg465848 date=1163137684] I am not sure but try like this: put action for form tag and nethos as post <form action="xxxxx" method="yyyyyy"> then try getting as : if($_POST) {     $drname=$_POST['drname'];     setcookie("TestCookie", $drname);     } [/quote]
  4. i think Jfisher446 was trying to imply the code like this: [code] <?php include("dbConnect.php"); do whatever ?> [/code] he just miss the open and close parenthesis.. Hope it will help...Good Luck.. More power...
  5. hi..."for statement" is not suited in this case... you can use "foreach statement" to make easier... for example: [code] <?php $faq_id=$_POST['faq']; foreach ($faq_id as $faq_delete) { mysql_query ("DELETE FROM tbl_faq WHERE faq_id='$faq_delete'"); } ?> [/code] Hope this helps...Good Luck!!! More Power...
  6. hi maybe you must interchange these lines of code here: if($worked) { //logged in if($_POST['submit']) { maybe it should look like this: if($_POST['submit']) { if($worked) { //logged in hope this will help...GOod Luck!! More power...
  7. i think CURLOPT_HEADER is a BUG see this: http://bugs.php.net/bug.php?id=10211&edit=2
  8. hi, i just wanna ask if did you set your cookie in page 1? maybe thats the error coz you retrieved your cookie in page 2 without setting it in page 1.. More power...Good Luck!!!
  9. hi guys...hope this helps...i just followed that instructions and everything works...good luck!!! more power... [attachment deleted by admin]
  10. guys thank you for this post, i also need this code... more power...
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.