Search results

  1. P

    script don't work correctly

    Hi, My web site don't work correctly(10 days ago). In fact "form action" don't transfer values, but I didn't made any changes in script . www.toni.x10hosting.com What's happened? Thank you!
  2. P

    connecting to mysql problems..

    I understand.Thanks for help.
  3. P

    connecting to mysql problems..

    I'm connecting from different server. $server = "localhost"; is not the solution for my problem!
  4. P

    connecting to mysql problems..

    My subdomain is:www.toni.x10hosting.com I created new user in mysql db, for connecting to "bd" from other host server.(useing PHP of course). for exemple:new user name:wert; password:123456 For connecting I write: $username = "wert"; $password = "123456"; $server =...
  5. P

    form for upload files - problems

    I try create "form action" for uploading files, but it's not working. Is it nessesery activate "register_globals" for PHP version 5.2.6 and where I can find that?
  6. P

    PHP Warrings:

    $w11- original weight $h11- original height $w1- new weight (desired); First I set $w1 and I have to calculate new $h1 $h1- new height code is: $row=getimagesize("images.jpg"); $w11=$row[0]; $h11=$row[1]; $k1=($w11/$h11); $h1=($w1/$k1); Edit: line 187 $k1=($w11/$h11); line 188...
  7. P

    PHP Warrings:

    Can someone tell me what this means: I try resize the image. Script doing that corectly , but on the page appears this: "Division by zero in file....... in line 187"
Top