Recent content by n2kmaster

  1. N

    PHP/Javascript solution for stopping post data refresh?

    working with a reallllllly old game script that was written back in php4 days. Ive gotten most of it to work however they are running into an issue with post data refresh(they had the issue back in that day and never fixed it) I've managed to disable the f5 and shift+f5 in firefox, is there any...
  2. N

    i need php to add variable number to mysql database number?

    I need the update command for taking a number variable from a form I've already got built and add it to an already existing number in the database, can someone tell me what the proper syntax for this is. Say database is accounts, variable from the form is turns, mysql table inside accounts is...
  3. N

    Need a super simple php login?

    k its gotta be php, i already have the mysql up and running, a simple script that will pull the info from the mysql listed here database name is _autosurf i need it to check id, pwd, hits, and surf_total and use that info to navigate to another page i already have built or drop if the infos...
  4. N

    Proxied address as url in php?

    is it possible to take a proxy and port # and combine it with a url via php scripting. Ive seen the fake hits generators that run in php i cant see it being to hard to find but i have no idea what it would be named as, I don't want to install any more programs so dont suggest that. Only php...
  5. N

    How can I completely load an .htm file content from another .html? Including Code.?

    Iframe is easy no muss no fuss loads a whole page inside another page <iframe src="" name="" width="" height=""> Sorry your browser does not support frames or is currently not set to accept them.</iframe> <a href="/img_articles/9081/page2.html" target="example"> Change here to change the page...
  6. N

    Using php and mysql how do I insert data into a column in my tables based on that...

    The first form doesn't specify the column names where the data will be inserted, only their values: INSERT INTO table_name VALUES (value1, value2, value3,...) The second form specifies both the column names and the values to be inserted: INSERT INTO table_name (column1, column2, column3,...)...
  7. N

    i need smart php graphic bars?

    I have a script thats one of those pimp scripts floating around, i need status bars for the thug and ho have a happiness level, now i got a simple frame holding it, i want the bars to be smart bars, like if the happiness of the thugs is 50% and max is 100% how can i get a dual colored bar that...
  8. N

    php programming help changing background based on location in a game?

    Ok heres what i got, a script that keeps track of a city that the player is located in, now i want to know what i need to make the variable change the background according to what number the database brings back. It has to be completely php based, that will change the background if i can make...
  9. N

    In php, need the background image to check for a variable and load accordingly?

    I have php code that picks a number based on what city they are in game, i need the php to change the background image based on what number the mysql gives the php, how is this done?
Back
Top