Jump to content

fiddy

Members
  • Posts

    75
  • Joined

  • Last visited

    Never

Everything posted by fiddy

  1. Can you pls try this: (if($_REQUEST['photo']=="" && $_REQUEST['memory']=="" && $_REQUEST['datap']==""){)
  2. i ment this. Sorry about my previous one (if($_REQUEST['photo']=="" && $_REQUEST['memory']=="" && $_REQUEST['datap']==""){)
  3. Can you pls try with OR (|). (if($_REQUEST['photo']=="" || $_REQUEST['memory']=="" && $_REQUEST['datap']==""){)
  4. Hi, Do you need two NOT (!) . (if(!$_REQUEST['photo']!="" && !$_REQUEST['memory']!="" && !$_REQUEST['datap']!=""){) I dont know what you are trying to do there but i guess it should be like  if($_REQUEST['photo']!="" .....
  5. Kindly try this: http://www.tanguay.info/wamp/installPhp5.php5?step=2
  6. Hi kindly check the script available here: http://codewalkers.com/tutorials/35/1.html I guess if you make some modifications you can achive what you want. [b]I did not test it [/b] Let me know how it goes...
  7. Pls try like this: if ($_REQUEST[gim] == 1) { $gotten = @mysql_query("SELECT * FROM pix ORDER BY pid DESC"); while($row = @mysql_fetch_array($gotten)) {         $title = htmlspecialchars($row[title]);         $bytes = $row[imgdata];         header("Content-type: image/jpeg");         print $bytes;         } else {         $errmsg = "MySql Error!"; } } Sorry if am wrong some where. Just felt like giviving a hint.
  8. Pls try like this: $query = "INSERT INTO blomform (blomform) VALUES ('".$_POST['blomform']."')";
  9. Why dont you try like this:     if($_REQUEST['photo']!="" || $_REQUEST['memory']!="" || $_REQUEST['datap']!=""){ ..... }
  10. array getimagesize ( string filename [, array &imageinfo] )
  11. Hi Friends, I am in need of the list of all the countries, states and its cities. I am looking for one which is a mysql table. Kindly help me if you have it or guide me to a URL where i can download it for free. Thanks
  12. Hi, I want to import or export contacts from outlook from/to the website i am developing . I am researching on it, if any one have done it or have any ideas , please help me by sharing. Thanks..
  13. Hi, You are getting this error because you use just ", you should use \" becuse you have started with ". i feel its better to do like this.So that you can add HTML as you wish without worrying about the quotes and double quotes $html = <<START <tr> <td valign='top' align='center' bgcolor='#212121'> <a href='#' onmouseover="roll_over('name', 'http://www.mysite.com/image-hover.jpg')" onmouseout="roll_over('name', 'http://www.mysite.com/image.jpg')"> <img border='0' src='http://www.mysite.com/image.jpg' name='name'></a> </td> </tr> START;
  14. Hi, i guess you would have two JS functions one for request to the server and other for getting back the responce from the server. In the JS function which receives the responce you can user location.href='file.php'
  15. fiddy

    GD2

    Did you check the php.ini, if you have uncommented the extention for GD. And are you modifying the right php.ini file.Kindly check if you have php.ini elsewhere. Just a thought...
  16. fiddy

    GD2

    Ok.., a thought ... Can you please check running phpinfo() and search for GD and check the version. If GD is not there when running phpinfo(), kindly check the ini if you have uncommented (i know you have done this)  and the dll matches the one in the ext dir.
  17. fiddy

    GD2

    Do you get error , if so can you past it here
  18. fiddy

    GD2

    Hi, Kindly check if the path to your  extentions dir is  C:\PHP\extensions  or C:\PHP\ext
  19. Hi, Thanks for your help. Will this work if i close the window and login again instantly. Thanks Fiddy
  20. Hi, I am looking for a way to track users who are logged in to my website. I thought of maintaining it in the DB and reset that DB entry when they logout. But, If the user go's out without logging out (by clicking the close button in the browser), it will show the status of the user as online always. Expecting help related to this.... Thanks, Fiddy.[color=black][/color]
×
×
  • 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.