Jump to content

Akenatehm

Members
  • Posts

    262
  • Joined

  • Last visited

    Never

Everything posted by Akenatehm

  1. Does the XML file already have to be created for it to write to it or will it automatically be created?
  2. Still says error, page cannot found....before when I got it to load locally it came up with a whole lot of errors but thats about it... Any ideas to fix? Do you have an MSN or Yahoo that I can add so we can talk through this problem easier?
  3. The name is users.php I access it by going through www.mydomain.com/public_html/users.php
  4. Whenever I try to open it in a browser it says the page cannot be found (Error:404. A PHP friend said it would be because I don't have a index.php file but idk if thats right?
  5. So far I have this script: <?PHP $link = mysql_connect("localhost","username","password"); mysql_select_db("kaurlcom_messenger"); $query = 'SELECT * FROM users'; $results = mysql_query ($query); echo "<?xml version=\"1.0\"?>\n"; echo "<users>\n"; while ($line = mysql_fetch_assoc($results)) { echo "<username>" . $line["username"] . "</username>\n"; } echo "</users>\n"; mysql_close($link); ?>
  6. Hey Guys, I need a PHP script and I was wondering if anyone could help me with one that will do one of the following: 1. Write Data Submitted in an HTML/Flash or Javascript Form to an XML Document. This will be used for storing user information. OR 2. Getting Data from a MySQL table and writing it to an XML file. I would prefer this method because it would be more secure and lag less on the server. I would also need a script that would re write this file with all the users on a set interval or when a new user has registered or when I press a button on a website. NOTE: This script does not need to display any information, all I want it for is to process and write the information. Any advice/suggestions or help would be very much appreciated. Thanks
  7. I use a MySQL database through phpMyAdmin. I don't know a lot about database programming or PHP although I can understand some of it. Is there any way you could assist me with creating this script?
  8. Do you think you could be a little more specific and give some details about what I would have to set up, and how hard it would be?
  9. Hey Guys, I was wondering if anyone knew of a PHP script that will write data from a mysql database into an XML File. I don't need the PHP script to display anything but to just write the data from the database to the xml file at a time interval. Help would be greatly appreciated. Thanks in Advanced Akenatehm
  10. Hey. I am very sorry for not being as specific as I could be. Whenever i try and browse to the php file e.g. www.url.com/file.php it says page cannot be found. I just spoke with a friend and he said it was because I don't have an index.php file. I don't know exactly what to put in that file. My friend and I are trying to create an Instant Messaging Client with Flash. We want this PHP file to get users from the database and post the information into an XML file which will be accessed via Action SCript.
  11. Hey Guys, I am trying to set a script up that will read the information from one of my tables and display it in an xml file. Here is my code. Any help would be enormously appreciated. Thanks Aken <?PHP $link = mysql_connect("localhost","username","password"); mysql_select_db("kaurlcom_messenger"); $query = 'SELECT * FROM users'; $results = mysql_query ($query); echo "<?xml version=\"1.0\"?>\n"; echo "<users>\n"; while ($line = mysql_fetch_assoc($results)) { echo "<username>" . $line["username"] . "</username>\n"; } echo "</users>\n"; mysql_close($link); ?>
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.