What do you mean by converting PHP file into HTML (especially when you mentioned scripts that are used to constract pdf files)?
Check if user's ip is already in the db Yes Do nothing No Add users ip in the db Increase the visitor count by 1
Here's a quick example: <?php $itemsPerPage = 16; mysql_connect("", "", ""); mysql_select_db(""); $currentPageNumber = (int) $_GET['page'];...
Do you own the rights to that script?
Another string with the same hash wont work because the password gets salted every time before it's checked against the one in the db. $salt =...
like this? md5($password. "this#is_salt%%12sddsadoa324121")
Md5 can't be bruteforced if you add long enough salt.
It seems to be their own custom coded player.
It should work, are you absolutely sure that the output is the same as in the db? Try adding mysql_query("INSERT INTO users (username,...
I suggest you do it like this: <?php if($_GET['scatid']==1){ $class = "Header1"; } else if($_GET['scatid']==2){ $class = "Header2"; } ?> <div...
Since you are a newcomer with just 1 post maybe you could use the [CODE] tags instead of zip file.
It is possible, but I don't see why you wouldn't just store the image's name in mysql and the image itself as file. Storing the images in mysql...
Replace this: $query = "SELECT * FROM articles WHERE keywords LIKE '%$keyword%' OR Description LIKE '%$keyword%'"; with $query = "SELECT * FROM...
a MySQL link identifier eg. $link1 = mysql_connect('server', 'mysql_user', 'mysql_password'); $link2 = mysql_connect('server2', 'mysql_user',...
Separate names with a comma.