Does anyone know a good tutorial on PHP and XML?
I need to build an authentication app using just Flash, PHP and XML (no database at all). I use Flash as the interface, and XML to store username and password (this XML file is located outside root directory, that's why I need PHP to read it.)
I will send 2 variable "name" and "password" to the PHP page, then PHP will read the XML and check if name and password are matched.
any ideas or suggestions?
thank you in advance
PS: my XML formatted like this:
<authorization>
<Subscriber Name="one" Password="pass1" Exp="12/1" VIP="1"/>
<Subscriber Name="two" Password="pass2" Exp="12/15" VIP="0"/>
</authorization>
I need to build an authentication app using just Flash, PHP and XML (no database at all). I use Flash as the interface, and XML to store username and password (this XML file is located outside root directory, that's why I need PHP to read it.)
I will send 2 variable "name" and "password" to the PHP page, then PHP will read the XML and check if name and password are matched.
any ideas or suggestions?
thank you in advance
PS: my XML formatted like this:
<authorization>
<Subscriber Name="one" Password="pass1" Exp="12/1" VIP="1"/>
<Subscriber Name="two" Password="pass2" Exp="12/15" VIP="0"/>
</authorization>
Comment