I use pico and ultraedit to code, and sometimes I get a bit lazy. I'm cleaning up a whole bunch of functions I wrote right now, and want to change stuff like this...
To be a bit more cleanly, maybe more like this:
(I hope the tabs and spaces show up right).
What's something good to do this with?
Rob
include_once("../config.inc");
echo ("
<h3>Please select a professor</h3>
<p>
<form target=\"mainpage\" action=\"editprof.php\" method=\"post\">
Edit Professor Data:");
To be a bit more cleanly, maybe more like this:
include_once("../config.inc");
echo ("
<h3>Please select a professor</h3>
<p>
<form target=\"mainpage\" action=\"editprof.php\" method=\"post\">
Edit Professor Data:");
(I hope the tabs and spaces show up right).
What's something good to do this with?
Rob