jimbojames5645
Programmer
what's wrong w/ this :`echo $str >> file`; nothing shows up in the file, however when i do `echo "bubba" >> file`;, it works fine.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<?php
$str = 'foo';
`echo $str >> thefile.txt`;
?>