Search Results

0
votes

MYSQL ERROR

As aknock says, you are missing a ' before $tags. However, you really need to be using mysql_escape_string to protect against …
13
votes

GET vs. POST Best Practices

In general it's not a good idea to have a GET request that modifies the system state somehow, like deleting an item. You could have your form look like this: <form action …
4
votes

Is it possible to have a PHP script authenticate users with their Linux user info?

To access Linux's authentication system directly, you could look at using the PAM module: http://pecl.php.net/package/PAM …