Search Results

4
votes

Onclick function that mails page url to admin

This will create onClick handler for your link, and action will be done in case user will accept confirm message. var onClickHandler = function() { if (confirm("Are you sure?")) …
0
votes

Set cookies on file upload in PHP

setcookie has "path" argument. If it is not specified: "The default value is the current directory that the cookie is being set in." So most likely you're trying to set cookie for …
4
votes

Hot to update mysql_fetch_array

You should use quotes: mysql_query("UPDATE items SET link = '{$res2}' WHERE id = $row[0]"); And it would be ideal to use mysql_escape_string() function. So …