Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by nizzan

  1. nizzan

    php upload file, gets everything but the file contents

    I don't think you can echo image file. You have to use the HTML <img ... /> tag. Read this http://sg.php.net/features.file-upload
  2. nizzan

    Newbie needs help with 'POST' variables

    Send form with array value? <input type=\&quot;radio\&quot; name=\&quot;Disposition[]\&quot; value=\&quot;Reject\&quot; /> Look at the array Disposition[]. Use this if you need different values with one name. can retrive it using; $var = $PHP_POST_VARS['Disposition']; foreach($var as...
  3. nizzan

    Query after login not working - mySQL

    Just make a check on it. Visually to satisfy yourself you can first echo the $email to the browser just to know if it exist. And the real check should be; if($email && ($email != &quot;&quot;)){ proceed with your query... }else{ show error which mean the $email is empty. } Many other ways to...
  4. nizzan

    Self-contained form?

    Let me put it my own way hope u get the idea. <?php function form(){ the form html code goes here with 1 hidden field. <input type=&quot;hidden&quot; name=&quot;op&quot; value=&quot;process&quot; /> } // end form() function process($1, $2, $3){ the processing code here }...
  5. nizzan

    Storing last viewed page in Cookie and encrypt

    session might help

Part and Inventory Search

Back
Top