I'm trying to automate adding pages in my simple CMS and, not being a big user of PHP, can't work out how I would get a column from my MySQL database and create a set of strings from it. I'll explain.
$home=mysql_query("SELECT * FROM data WHERE callsign='home'"); //**
$num=mysql_num_rows($home);
$i=0;
while ($i < $num) {
$f1=mysql_result($home,$i,"code"); //**
$i++;
}
switch($_GET['page']) {
case '#home' : $page = $f1; break; //**
}
echo $page;
How would I create the strings and variables on the lines marked with an asterisk for each entry in a column on a MySQL database?
codebut you're right, I doubt that will work. The third argument should be numeric. The while loop is useless as well – Cfreak Jul 4 '12 at 5:13