...%PH6% (Ec6E) %PH7% (Ec7E) %PH8% (Ec8E) And so on, what I need to be able to do is to get some sort of software or maybe script to make a list like the above without me having to type it out but by but, All I need changing is the number. Any help would be nice
put this in a file like my numbers.php and execute it as ]http : //soapbath/numbers.php <?php $i =1; // start $j =10; // end while ($i<=$j) { echo '%PH'.$i.'% (Ec'. $i .'E)<br>'; $i++; } ?> PHP: