[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

Question
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

5.4

Need help creating individual form fields in this PHP script.

Asked by webfxonline in PHP Scripting Language

Tags: php

I have a PHP script that's running here: http://www.x929.com/xupload/index.php where local bands can upload their mp3's to us via this form.  However, I want to change the single text box field to individual field for the following info so that a message with this info is sent along with the mp3 attachment.

Fields I'd like to add to this form:

Your Band's name

Your Band's Bio & Credits

Contact Phone #

Website URL





Here is the PHP script/form code:

<link rel=stylesheet href="formstyle.css">
<?
include "config.php";
?>
<title>Local X Music Upload</title>
<body bgcolor="#000000">

<div align=center>
<p class=title>
                  <img border="0" src="localxrocks_header.gif" width="518" height="229"></p>
<form action="mail_module.php" method="post" ENCTYPE="multipart/form-data">
<p><table border=0 width="46%" cellspacing=0 cellpadding=8 bgcolor=gray>
<tr><td bgcolor="#F0F0F0" width="36%" align="right"><b>Your band's e-mail
      address</b></td>
<td width="58%" bgcolor="#F0F0F0">
<input class=fi type=text size=46 name=email_from value="<? if($mail_mode==0) echo "anonymous@anonymous-server.com";?>"?>"?>"?>"?></td></tr>
<?
if($mail_mode==0) print("<tr><td bgcolor=\"#F0F0F0\" width=99%><b>TO EMAIL</b></td>
<td width=1% bgcolor=\"#F0F0F0\"><input class=fi type=text size=40 name=email_to_anonymous><br><i>only for testing, please type your real email address</i></td></tr>");
?>
<tr><td bgcolor="#F0F0F0" width="36%" align="right">&nbsp;</td>
<td width="58%" bgcolor="#F0F0F0">
<input class=fi type=text size=46 name=email_subject value="Local X Music Upload"?></td></tr>
</td></tr></table>
<table border=0 width="46%" cellspacing=1 cellpadding=8 bgcolor=#AED0F2>
<tr><td bgcolor=#F0F0F0>
<p align="center"><b><font size="4">Please Include The Following Below:</font></b><div align="center">
      <table border="0" width="27%" id="table1" cellpadding="2">
            <tr>
                  <td>
                  <div align="center">
                        <table border="0" width="53%" id="table2" cellpadding="2">
                              <tr>
                                    <td>
                  <ul>
                        <li>
                        <p align="left"><b><font size="2">Your Band's name</font></b></li>
                        <li>
                        <p align="left"><b><font size="2">Your Band's Bio &amp; Credits</font></b></li>
                        <li>
                        <p align="left"><b><font size="2">Contact Phone # </font></b>
                        </li>
                        <li>
                        <p align="left"><b><font size="2">Website URL</font></b></li>
                  </ul>
                                    </td>
                              </tr>
                        </table>
                        <p align="left"><textarea class=fi name=real_email_message cols=86 rows=14 onclick=createCaret(this); onselect=createCaret(this);>
<? if($mail_mode==0) echo "Test message

With blank lines and <b>HTML</b> tags
<hr>

";?>
</textarea></div>
                  </td>
            </tr>
      </table>
      <p><font color="#FF0000"><b>* MP3 File size must not exceed 6 MB</b></font></div>
</p>
<?
print("
   <p><b>Attach your MP3 file</b> <input class=fi type=\"file\" size=40 name=\"upfile\"><br>
   <input type=\"hidden\" name=\"MAX_FILE_SIZE\" value=\"$max_size\">
   <br><u>");
?>

<p align="center">
<input class=fb type="submit" value="Submit" style="font-size: 8pt; font-family: Verdana; font-weight: bold"></td></tr></table>
</form>

&nbsp;</div>
 
Related Solutions
Keywords: Need help creating individual form field…
 
Loading Advertisement...
 
[+][-]02/22/07 05:34 PM, ID: 18593098Accepted Solution

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

About this solution

Zone: PHP Scripting Language
Tags: php
Sign Up Now!
Solution Provided By: ebosscher
Participating Experts: 1
Solution Grade: A
 
[+][-]02/05/07 10:36 AM, ID: 18469971Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]02/05/07 10:39 AM, ID: 18470008Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]02/05/07 11:07 AM, ID: 18470205Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]02/05/07 11:16 AM, ID: 18470287Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]02/05/07 11:52 AM, ID: 18470646Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]02/05/07 12:29 PM, ID: 18470942Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]02/05/07 12:39 PM, ID: 18471053Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]02/05/07 01:56 PM, ID: 18471769Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]02/06/07 07:27 AM, ID: 18476781Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]02/08/07 06:36 AM, ID: 18493863Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]02/08/07 12:28 PM, ID: 18496896Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]02/08/07 12:37 PM, ID: 18496967Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]02/09/07 09:44 AM, ID: 18503088Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]02/09/07 10:00 AM, ID: 18503217Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]02/09/07 10:05 AM, ID: 18503252Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]02/09/07 10:10 AM, ID: 18503298Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]02/09/07 10:13 AM, ID: 18503326Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]02/09/07 10:15 AM, ID: 18503339Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]02/09/07 10:18 AM, ID: 18503355Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]02/09/07 10:23 AM, ID: 18503393Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]02/09/07 10:35 AM, ID: 18503478Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]02/09/07 10:42 AM, ID: 18503542Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]02/09/07 10:50 AM, ID: 18503592Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]02/09/07 01:00 PM, ID: 18504505Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]02/13/07 11:21 AM, ID: 18525103Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]02/13/07 11:35 AM, ID: 18525221Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]02/19/07 02:53 PM, ID: 18567048Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]02/21/07 08:15 AM, ID: 18579519Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
 
Loading Advertisement...
20091111-EE-VQP-92