Help with php blank page?

前端 未结 10 708
一向
一向 2021-01-15 23:46

I run a fantasy basketball league. My php website/sql database is designed to let the person running the team do everything through the website - they can waive a player, an

10条回答
  •  情深已故
    2021-01-16 00:08

    This is where I got...everything below the print line wouldn't show up if I put the print line below it.

    $k=0;
    $Salary=0;
    
    print "
    made it to this label: some_unique_label_name_here"; while ($k < $Fields_Counter) { $Type=$_POST['type'.$k]; $Salary=$_POST['cy'.$k]; $Index=$_POST['index'.$k]; $Check=$_POST['check'.$k]; $queryn="SELECT * FROM nuke_iblplyr WHERE pid = '$Index' "; $resultn=mysql_query($queryn); $playername=mysql_result($resultn,0,"name"); $players_team=mysql_result($resultn,0,"tid");

提交回复
热议问题