Jump to content

outputting php file from mysql


orbitter

Recommended Posts

:'( hi there if anyone can help me please, i have a mysql database which stores php files. what i need help with is how to actually output the content of those files randomly in a web browser, can anyone help me pleaseeee??? :'(

 

 

the code for inserting the data in the files is this:

 

<?php

$script1 = "file1.php";

mysql_query("INSERT INTO my_scripts (script_name) VALUES ('$script1')");

 

$script2 = "file2.php";

mysql_query("INSERT INTO my_scripts (script_name) VALUES ('$script2')");

 

$script3 = "file3.php";

mysql_query("INSERT INTO my_scripts (script_name) VALUES ('$script3')");

?>

 

 

 

can anyone help me with the code to actually output the content of these files randomly??

Link to comment
https://forums.phpfreaks.com/topic/94040-outputting-php-file-from-mysql/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.