Kan iemand mij helpen?
Ik heb 2 scripts. script 1 verwijst naar script 2.
script 1:
<?
<html><head></head><body>
<FORM ACTION="invoeren1.php" METHOD=POST>
<table>
<tr><td>Auction #</td><td> <INPUT size="20" NAME="auction"></td>
<tr><td>Service Tag</td><td> <INPUT size="20" NAME="service_tag"></td>
<tr><td>Type</td><td> <INPUT size="20" NAME="type"></td>
<tr><td>CD/DVD</td><td> <INPUT size="20" NAME="cd"></td>
<tr><td>Ram</td><td> <INPUT size="20" NAME="ram"></td>
<tr><td>HDD size</td><td> <INPUT size="20" NAME="hdd"></td>
<tr><td>CPU</td><td> <INPUT size="20" NAME="cpu"></td>
<tr><td>Start Price</td><td> <INPUT size="20" NAME="start"></td>
<tr><td>Buyer</td><td> <INPUT size="20" NAME="buyer"></td>
<tr><td>Bought For</td><td> <INPUT size="20" NAME="bought"></td>
</table>
<BUTTON TYPE=SUBMIT>INVOEREN</button>
</form>
<body>
</html>
?>
script 2:
<?php
$auction = $POST_['auction'];
$test = "hello world";
echo $test;
echo $auction;
?>
Nu heb ik echo $test; gebruikt om te testen of het allemaal wel werkt mijn script... maar dat komt er gewoon goed uit. alleen hij haalt die informatie niet op uit me vorrige script. het is heel basic HTML maar als je er 1 a 2 jaar nix meer mee hebt gedaan is het super irritant!
Gaarne help! :)
971 views