Search results

  1. descalzo

    Guess Who Posts Next

    Nope. Don't fly that much I guess a left handed blonde.
  2. descalzo

    Count to 1 Million

    Mcdxcvii
  3. descalzo

    Word Association

    bananas (good source of potassium)
  4. descalzo

    x10 forum attendance sheet

    neteater Soki sarvar leafypiggy vigge_sWe ichwar diabolo coldfirezz akkudreamz Smith6612 alexandgruntz LHVWB ichwar neteater akkudreamz IonCannon218 Briganti i2006 ichwar makj111 leafypiggy nexhunter sarvar Stunna akkudreamz neteater nterror ichwar akkudreamz ichwar sarvar akkudreamz...
  5. descalzo

    suspended for "other" reasons but no real info

    Perhaps they should call it copyright infringement rather than phishing. From every definition of phishing I know, what he did was not phishing. Phishing implies criminal intent.
  6. descalzo

    How to use the Cron Manager?

    I am used to running shell scripts or perl scripts a cron jobs. Add the following as the first line in your php script. Do not wrap in it < ? php tags. #!/usr/bin/php Called the shebang line. That tells the system to run your script via php. It cannot guess just by the...
  7. descalzo

    x10 forum attendance sheet

    neteater Soki sarvar leafypiggy vigge_sWe ichwar diabolo coldfirezz akkudreamz Smith6612 alexandgruntz LHVWB ichwar neteater akkudreamz IonCannon218 Briganti i2006 ichwar makj111 leafypiggy nexhunter sarvar Stunna akkudreamz neteater nterror ichwar akkudreamz ichwar sarvar akkudreamz...
  8. descalzo

    How to Woo a Girl

    Candy Is Dandy But liquor Is quicker. -- O. N.
  9. descalzo

    Feature requests - PHP

    $exts = get_loaded_extensions (); $ext_funs = get_extension_funcs ( 'xml'); // extension modue name lower case $all_funs = get_defined_functions ( ) ; gives you three arrays with the results.
  10. descalzo

    x10 forum attendance sheet

    neteater Soki sarvar leafypiggy vigge_sWe ichwar diabolo coldfirezz akkudreamz Smith6612 alexandgruntz LHVWB ichwar neteater akkudreamz IonCannon218 Briganti i2006 ichwar makj111 leafypiggy nexhunter sarvar Stunna akkudreamz neteater nterror ichwar akkudreamz ichwar sarvar akkudreamz...
  11. descalzo

    Have lots of question marks on my web page.

    I do not think the problem is with the headers. His page is in Cyrillic (Russian), which is "windows-1251" If you view http://kosivplast.co.cc/gallery.php , you can see that the navagation links and some other parts (apparently hard coded) are displayed correctly. It is the content that has been...
  12. descalzo

    need mysql help

    Ok, I took the liberty to remove the "extra" fields. My assumptions: pets.user_id links to users.user_id .... users can have more than one pet in pets pets.pet_id links to pettable.pet_num .... each pet occurs exactly once in pets and once in pettable ..... each user_name is unique...
  13. descalzo

    Active PHP functions

    $arr = get_defined_functions(); // Returns an array of all defined functions // two element array, each an array // internal functions and user defined $stuff = $arr['internal'] ; // grab the internal function array $where = array_search( 'sprintf', $stuff ); // see if it is...
  14. descalzo

    Monotheism

    But do you believe that the God you pray to is different than the God that Jews pray to? Since monotheists believe that there is only one God, if you belive the Jews pray to a 'different God', they must be praying to a non-god. But do you believe your God is the God of the Garden of Eden...
  15. descalzo

    need php/mySQL help again :(

    $query2 = "SELECT * FROM pettable petatk ='$pet_atk',petdef='$pet_def' WHERE pet_id='$petid' "; I have no idea what the bolded part is doing there. You cannot set php variables from within a SELECT statement like that. Instead of SELECT * which returns all the fields, ask for the...
  16. descalzo

    Images do not show

    Seems that your local copies are ok, but your online copies somehow got corrupted. Try deleting one file and uploading a replacement. Make sure you are uploading in binary mode. Clear browser cache and view again to see if it worked.
  17. descalzo

    textarea and link

    When you want to disable the default behavior of an element (button, link, etc) you add an event handler (onclick, oncontextmenu, etc) that returns the value of false . So echo "<tr><td><a href='#' onclick=\"addtext('$name') ; return false; \" oncontextmenu=\"removetext('$name') ...
  18. descalzo

    need php/mySQL help again :(

    int mysql_insert_id( ) Retrieves the ID generated for an AUTO_INCREMENT column by the previous INSERT query. This function returns 0 if the previous operation does not generate an AUTO_INCREMENT ID, or FALSE on MySQL connection failure. Be sure to call mysql_insert_id() immediately after a...
  19. descalzo

    textarea and link

    function addtext(text) { orig_text = document.getElementById("players1").value startAt = orig_text.search(text); if (startAt == -1) { document.getElementById("players1").value += text+",\n"; } } function removetext(txt) { txt = txt + "," ; orig_text =...
  20. descalzo

    textarea and link

    RE: making line of text in textarea disappear when right clicked Cannot think of a way to do it. RE: leaving some text when two lines in textarea Maybe if you post your new code and/or link to the page that uses them
Top