zero-perfoliate
zero-perfoliate

Author Topic: Need help with this script.  (Read 586 times)

Offline Donnie

  • New PHP Members
  • Posts: 2
  • Karma: +0/-0
Need help with this script.
« on: October 19, 2008, 06:32:16 AM »
This what I have.

<html><body>
<h4>Song Form</h4>
<form method="post">
Song: <input name="song" type="text" />
<input type="submit" value="Submit" />
</form>

<?php

$song = $_POST['song'];

$fh = fopen("playlist.html", "a");
fputs($fh, "$song
\r\n");
fclose($fh);

?>

</body></html>

It works but need it to add a number for each post and it will add the
 when the webpage is opened even if nothing is posted.

Donnie

Offline Donnie

  • New PHP Members
  • Posts: 2
  • Karma: +0/-0
Re: Need help with this script.
« Reply #1 on: October 19, 2008, 06:39:22 AM »
It will add  the <   br   >  s what was supposed to show...without the spaces. The  <  br  >   ...is after $song in script also...
(fputs($fh, "$song <  br  >\r\n");   lol

pls bear with me...am new here and to php too  ty.

Donnie
« Last Edit: October 19, 2008, 06:46:26 AM by Donnie »

 

zero-perfoliate