![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| Web Programming, Web 2.0 and Mashups Discuss Web Programming and Web Server Administration, including LAMP, Apache, MySQL, Flash, HTML, SEO, Mashups and other Web APIs and topics. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Calling an Expect script from a Webpage using PHP | CCUSmith | Shell Programming and Scripting | 0 | 06-19-2008 05:36 PM |
| avoid displaying errors while executing a script | vikas027 | Shell Programming and Scripting | 4 | 10-29-2007 02:41 PM |
| Help with perl script to search webpage | Terrible | Shell Programming and Scripting | 5 | 12-01-2006 02:23 PM |
| Displaying Script command with output | JeDi | Shell Programming and Scripting | 5 | 04-30-2004 12:09 PM |
| use of FTP in webpage | shiny | Linux | 0 | 10-06-2003 03:34 AM |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
php script + not displaying webpage
Hi guys
Im in the process of designing a website for my company which does the following 1) Daily execution a perl script. The perl script's output is diverted to a .html file. 2) The .html file generated from 1) sets up a centralised webpage showing options as radio buttons (the radio buttons are given the same name to show grouping) 3) When clicking on one of the radio buttons, a .php script is executed which should show a webpage with a simple message in it. The html code for the part with radio buttons is Code:
<form action = "process.php" method="post"> <br/> <input type="radio" name="group" value = "member1"/> <br/> <input type="radio" name="group" value = "member2"/> <br/> <input type="radio" name="group" value = "member3"/> </form> And the .php script code (which is a separate .php file) is Code:
<?php print "<p>"; print "hello world"; print "</p>"; ?> |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|