Search Result

Collapse
26 results in 0.0015 seconds.
Keywords
Members
Tags
post
  •  

  • buynsell
    started a topic Sending Form Data
    in PHP

    Sending Form Data

    I made a custom script which add entries to my vbulletin database,

    I have a site of Phpfox script, I want when user click in signup button after entering all data so I want my custom script also get executed but I can't figure how to do that, I don't have much knowledge in php.

    this is the code in my Phpfox script

    Code:
    <input type="submit" value="{phrase var='user.sign_up'}" class="button_register"
    ...
    See more | Go to post

  • How to put multiselect information into mysql database?

    I cant for the life of me find how to put selections from a dropdown menu or other multiselect list into my database... help? The only ones i can find online are putting mysql information into them, not putting information from them into the database.

    Thanks

    -Martin
    See more | Go to post

  • php send email with variables pulled from POST form

    I can't figure out why this page doesn't work. It pulls from a html page that is set to POST when the submit button is clicked but I receive an error saying that the page may be configured incorrectly?
    What did I do wrong? I think it may have something to do with putting $_POST in the variables but I don't know for sure.
    Code:
    Thank you <?php echo $_POST["name"]; ?> for registering for the Office Equipment Smash event!
    ...
    See more | Go to post
    Last edited by jhardman; Aug 9 '11, 03:28 PM. Reason: Accidentally posted in asp forum. Moved to php.

  • Dimetrius
    started a topic How to POST a file without a form?
    in PHP

    How to POST a file without a form?

    Suppose we have a form at server, say, http://www.b.com/ (let's call it server Â):
    Code:
    <form action="/" method="post" enctype="multipart/form-data">
    <input name=file type=file size=20>
    <input type=submit name=submit value="Load">
    </form>
    for uploading files to server B for their further processing with final result shown at the browser.
    Next, we...
    See more | Go to post

  • Is this class unsafe to use in my public PHP-scripts?

    I have no idea if it's safe to use or not, so I have to ask you.

    Code:
    	class Requests {
    		private $type;
    		public function __construct($type='') {
    			$this->type = strtolower($type);
    			$this->createObject();
    		}
    		private function createObject() {
    			switch($this->type) {
    				case 'post':
    					$arr = $_POST;
    					break;
    				case 'get':
    					$arr = $_GET;
    ...
    See more | Go to post

  • nenana
    started a topic Can I post an array for 'submit'?
    in PHP

    Can I post an array for 'submit'?

    Hi all,

    I am writing a test system.I want to post question id and selected answer id(I used radiobuttons), when user clicks on the 'Submit' button.Also I want same for the 'Next' and 'Back' buttons.
    I am not entirely sure that I did correct.Here is the code
    Code:
    .....
    {
    for ($i = 0; $i < count($query); $i++) {
    
                    $qid = $query[$i][0];
    ...
    See more | Go to post

  • Josh Argent
    started a topic Posting forms on another website...?
    in PHP

    Posting forms on another website...?

    Okay, I want to make a php script that will be able to access and post a form on another website and return the result pages value.
    For example, I want a user to be able to enter a password and username for facebook and then it will submit the login form and return their wall. Is this possible in php? I don't mind experimenting with any language. :D
    Thanks in advance.
    See more | Go to post

  • AutumnsDecay
    started a topic How to Send an email using PHP for Beginners
    in PHP

    How to Send an email using PHP for Beginners

    Perhaps you've wanted to create a 'Request a Quote' or a 'Contact Us' form for a client you have, but didn't know how to get the information from the user to your client.

    Using PHP's mail() function, we take the user's inputted data and send it to our client's email address with minimal effort.

    Let's assume we have a contact form with the following markup:

    Code:
    <form action="send.php" method="post"
    ...
    See more | Go to post

  • nithinkolekar
    started a topic textbox data not available in post variable
    in PHP

    textbox data not available in post variable

    I am trying to code a form that has multiple textbox without refershing page using ajax, then after each textbox threre will be link called add which POST call the other php called addnew.php.

    In addnew.php data will we added to database(postgr es). But I am geting problem while getting the post variable itself.For testing I added the alert in script.

    this is my code for form (I will chage for multiple textbox once it...
    See more | Go to post

  • rienh
    started a topic PHP Pagination and POST/SESSION variables problem
    in PHP

    PHP Pagination and POST/SESSION variables problem

    I'am using Adam's pagination script from: http://www.developphp. com/view_lesson.php ?v=289 And I adjusted the code just a little, so it fitted my needs.
    Now I bumb into a problem, and I can't figure it out, how to let the script doing its job right.
    The adjusted pagination script pulls a list of links, from my database from a certain category.
    The pagination script is called from a link on another page, so that other categories...
    See more | Go to post

  • romepatel
    started a topic Post Values from WebBrowser in Windows Form

    Post Values from WebBrowser in Windows Form

    Hi,

    I am using VS 2005 and C#

    I am using a webbrowser in a windows form.
    This webbrowser is loaded with a web form (<form method="POST" >).

    Now i want to fetch the POSTED values from webbrowser into my Windows Form.

    How can i do that ....?

    Thanks in advance
    See more | Go to post

  • How to get variables from FLASH through $_POST method then submit to Aweber?

    Hi Everyone,

    Anybody who can help me with this? I am trying to get variables from a flash quiz application and submit them to aWeber.com for initiate a subscription. I has several attempts at doing this but to no avail. Anyone who can help me?

    The instruction provided by aWeber is that the method should be POST and that the action must be set to "http://www.aweber.com/scripts/addlead.pl". and the inputs should...
    See more | Go to post

  • ChrisPintys
    started a topic Form to submit, but also display data?
    in PHP

    Form to submit, but also display data?

    Hello, like everyone else on here, I'm looking for some help, but I'm thinking this should be fairly simple for people who know the language.

    I've got an HTML form full of drop downs and input boxes that a user fills out, then they hit Submit and using the POST method it goes to an upload.php page I wrote, that uploads all of their values to a database, and presents them with the unique Web ID it generated.

    Now, I need...
    See more | Go to post

  • joey99881
    started a topic $_POST problems
    in PHP

    $_POST problems

    Hi all,

    Take one form:

    Code:
    <form method="post" action="process.php" />
      <input type="text" name="foreame" />
      <input type="text" name="surname" />
      <input type="submit" value="Submit" />
    </form>
    Add in a php script:

    Code:
    <?php
      $firstame = $_POST['foreame'];
    ...
    See more | Go to post
    Last edited by Atli; Aug 13 '10, 08:07 PM. Reason: Please use [code] tags when posting code.

  • Problem posting xml string using Msxml2.ServerXMLHTTP in classic ASP

    I am attempting to send a purchase request string to a webservice on a remote site I am able to successfully send the quoterequest using Msxml2.ServerXM LHTTP on one page and parse the response. When I try to send the purchaserequest on the next page to the same URL, I get an "Unable to Parse" error and the POST never leaves my server. Please help!

    Working POST (quoterequest)
    Code:
    <%@ LANGUAGE="VBSCRIPT"%>
    ...
    See more | Go to post
Working...