How do I write:
$count = mysql_num_rows($result);
print "<h3>$count metal prices available</h3>";to a file, index.php?
I've tried:
echo "$count = mysql_num_rows($result);
print "<h3>$count metal prices available</h3>";" > index.phpbut I don't understand how to escape the double quotes that are in the input.
Would it be better to use something other than echo? I'd rather not rewrite the whole PHP script if possible (it's longer than the 2 lines given in the example!).
2 Answers
There would be several ways to do so:
cat >index.php <<'EOT' $count = mysql_num_rows($result); print "<h3>$count metal prices available</h3>"; EOTor
echo '$count = mysql_num_rows($result); print "<h3>$count metal prices available</h3>";' > index.phpor
echo '$count = mysql_num_rows($result);' >index.php # overwrites file if it already exists echo 'print "<h3>$count metal prices available</h3>";' >>index.php # appends to filethere are much more possible ways - use this as a starting point for test things...
1In bash, all you need to do is replace the outer quotes with single quotes:
echo '$count = mysql_num_rows($result);
print "<h3>$count metal prices available</h3>";' > index.phpIf you need to do more complicated stuff, you can echo multiple times using ">>" which appends instead of overwrites:
echo '$count = mysql_num_rows($result);' >> index.php
echo 'print "<h3>$count metal prices available</h3>";' >> index.php