Recent content by Sigher

  1. S

    Why does this PHP code work in Firefox but not IE when it is done on server side.?

    Why does the following code work in ie but not firefox $result = mysql_query("SELECT * FROM `vecpix_passwords` WHERE `Password` = '$pass'"); if (!$result) { $r = 'Invalid query: ' . mysql_error(); }else{ $count = mysql_num_rows($result); if($count == 1){ $_SESSION['passvp'] = 'Yes'; $r =...
  2. S

    Why does this PHP code work in Firefox but not IE when it is done on server side.?

    Why does the following code work in ie but not firefox $result = mysql_query("SELECT * FROM `vecpix_passwords` WHERE `Password` = '$pass'"); if (!$result) { $r = 'Invalid query: ' . mysql_error(); }else{ $count = mysql_num_rows($result); if($count == 1){ $_SESSION['passvp'] = 'Yes'; $r =...
  3. S

    With the SPIP CMS how can I add custom PHP if statements?

    With the SPIP CMS how can I add custom PHP if statements I ask because it is mostly in french and i have been working on this site for a client all week and i am not making any progress. All im needing to do is add a password protection too a article. so only people that know the password can...
  4. S

    PHP Compare Parts of Arrays?

    Hello all. Alright i am building a application that requires me to compare to arrays. But i cant think of a way to do it. alright ill give an example of what im talking about $Array1=array( [0] = something [1] = something else ) $Array2 =array( [0] = not something [1] = something }...
  5. S

    what is the right way to add a INPUT field to the html page using jquery?

    Hi just wanting to know what is the right way to add a INPUT field to the html page using jquery that will make it work correctly and as if it were hard coded?
  6. S

    send form data with jquery to php file on_change?

    hello so I'm programming a little thing that needs to be able to send form data to a php file and register it as a session variable each time the input field changes so as a person types into a field it sends the data to the php file and it updates the session with the new value but here is...
  7. S

    what would the effect be on the environment if every car ran on hydrogen?

    what would the effect be on the environment if every car ran on hydrogen. i mean what would the effect of adding all that water vapour to the air. 8million cars all throwing water vapour into the air couldn't be good
Back
Top