Search:
Type: Posts; User: thewebportfolio
Search :
Search took 0.01 seconds.
Ahhh got it to work, thank you very much for your help! Really couldn't of done this without you!
On that, it gets the Predefined-Attendees correctly and is shown as:
Predefined-Attendee
User-ID - 103
Login-ID - Marshalls
First-Name - N/A
Your a genius! I know i said last question before but i have found one more thing if its ok...
On the <Predefined-Attendee> theirs a parent tag of <Predefined-Attendees>
this means in my XML...
Thank you, that works perfect, just one more question if you could please.
In the XML file, their is a tag called 'Host', 'Organizer' and 'Predefined-Attendee'
These 3 tags have the same tags...
var phone = document.forms["cutomer"]["compphonenumber"].value;
^^^ customer is misspelled on the validation - this could affect it
Hello,
I have changed your JavaScript to the below:
<script>
function ValidateCustomerDetails()
{
var x=document.forms["customer"]["custname"].value;
Hello,
I have recently posted a few questions about exporting XML into PHP into MySql.
I have created my PHP file which exports my XML into MySql which works great, if, i have only 1 XML in the...
so would it look like this:
$xmlDoc = new DOMDocument();
$xmlDoc->load( 'cdocument-2012-03-03.xml' );
///// THIS IS AN EVENT TAG //////
$searchNode =...
Hello,
I have extracted details from an XML document into PHP then into MySql.
I have written the following code to get the XML into PHP:
$xmlDoc = new DOMDocument();
$xmlDoc->load(...
Thank you Spufi, i have tried that already and cannot get it to work, any ideas?
Many Thanks
Hello,
I have been trying to find a way to export data from an xml document and back into mysql. i have wrote the following code:
$oDOM = new DOMDocument();...
Thank you for the suggestion, i have just managed to get PsyNor's code to work, it was me doing it wrong, sorry! + many thanks for all your help!
<input style="margin:0 0 5px 0; font-size:16px; color:#09F;" id="firstname" class="formfield" name="firstname" type="text" size="30" value="<?php print (!isset($_POST['firstname'])) ? '' :...
when i try adding a 'value' to the form, it populates the text box, is their another option? Many Thanks for your help:)
Thank you, what would i use for validation could you please show me an example + the popup is all JavaScript that opens a PHP file. below i have showed the on click function, this opens...
If i was to use it as server side action would it not reset the form on redirect back, also my form is in a popup box not a page. Hope this makes sense + thank you for the support
Thank you, how would i call this from the form like onsubmit?
Many Thanks
also my input field is
<input id="firstname" class="formfield" name="firstname" type="text" size="30"/>
Hello,
I am creating a form where users sign up to be a member of my website.
Currently the validation I'm trying to use is in Javascript, although i want it in PHP.
Could anyone please help...
Thank you, works great! Much appreciated:D
Hello,
I have a sign up form where their are 5different text boxes for the address.
House name/number & street,
City,
County,
Postcode,
Country
Thank you:D Extremely grateful for this! Working like a dream!