Search results

  1. S

    Naming your baby a name from another culture?

    okay, im not pregnant or anything, but im just curious. i like the name Katarzyna, but im chinese. Katarzyna is a polish name. i know that your name probably came from another language but its not as harsh (?) sounding as "Katarzyna". what would you think if you saw some chinese girl with a...
  2. S

    How do I refresh just a portion of a webpage using ajax?

    I need a script that refreshes a portion (not the entire page) of a webpage every x-seconds. Could anyone recommend one or post a snippet that does such? I don't want to use i-frames, I prefer AJAX or something similar.
  3. S

    Using PHP to upload files: "application/msword" is not reading .docx?

    I have this snippet: $fileName = $_FILES['userfile']['name']; $tmpName = $_FILES['userfile']['tmp_name']; $fileSize = $_FILES['userfile']['size']; $fileType = $_FILES['userfile']['type']; $fp = fopen($tmpName, 'r'); $content = fread($fp, $fileSize); fclose($fp); if($fileType !=...
  4. S

    Some help with AJAX, please?

    I need a small AJAX script that performs a MYSQL query (just a simple select) based on an ID that already exists and prints the results on the same page. I can't seem to find a snippet that does this. Could anyone be of assistance? (I'm using PHP.)
  5. S

    Some help with AJAX, MYSQL Select?

    I need a small AJAX script that performs a MYSQL query (just a simple select) based on an ID that already exists and prints the results on the same page. I can't seem to find a snippet that does this. Could anyone be of assistance?
Back
Top