[vox-tech] another php question

vox-tech@lists.lugod.org vox-tech@lists.lugod.org
Thu, 6 Jun 2002 11:52:24 -0700 (PDT)


>    <LI><A href="display_stats.php3" arg="mustang.dat">mustang</A>
>    <LI><A href="display_stats.php3" arg="beetle.dat">beetle</A>

My PHP is rusty...  ColdFusion rots the brain... but

Are you deliberately trying not to specify it on the URL? Or is that what
you want?
<A HREF="display_stats.php3?car=mustang">mustang</A>

display_stats.php3:
fopen($car.".dat", "rb");  // Or $HTTP_*_VARS["car"] instead of $car.

Can't remember what the * is...

-Tom
tlburnett@ucdavis.edu