|
Help with MySql float Hi Guys, When inserting a value like 123567.8956 in my table it is rounding it to 2 decimal place. The field type is set as float. Can anyone tell me why it's not taking all the decimals? and How to insert the number with all the decimals? Thanks Velen ... 17 Feb 2008 18:29
Password decryption Hi, I'm junior in PHP and stuck on Encryption. I have encrypted password using SQL : $query = "insert into user (userid,password,) values ('$username',Password('$pass'));"; Which is working perfect. Now I'm working on Login page where I have to compare passwords.. As password in database is encrypted s... 17 Feb 2008 12:58
[PHP-DB] Importing CSV files to MySql Db issue. Is there something that has changed in the new MySql DB ? I am trying to upload a data like this from my CSV file to a table through CSV upload and not CSV Load Data: field1,field2,field3,field4,field5,field,6,field7,field8 field1,field2,field3,field4,field5,field,6,field7,field8 Parameters I am using are:... 15 Feb 2008 23:44
independent session data for multiple browser windows Greetings, I have a nearly-completed accounts/billing database using PHP and MySQL, and was just informed that users will want to access the database via multiple windows in one browser on the same machine, so I'm looking for a way to have each browser window have its own set of session data. I was in... 27 Feb 2008 17:24
Trying to paginate a code but having trouble. Chris Carter wrote: Hi, I am trying to paginate this to display just 4 results and use <Previous and Next> options for pagination. Please help. <div class="content"><p><?php // database information include "includes/config.php"; $query="SELECT * FROM students LIMIT"; $resu... 14 Feb 2008 18:00
[PHP-DB] Trying to paginate a code but having trouble. Hi, I am trying to paginate this to display just 4 results and use <Previous and Next> options for pagination. Please help. <div class="content"><p><?php // database information include "includes/config.php"; $query="SELECT * FROM students LIMIT"; $result=mysql_query($query); $num=mysql_numrows($re... 14 Feb 2008 13:38
How to Parse XML Feed on my PHP page Take a look at the pear XML_Feed_Parser package at http://pear.php.net/package/XML_Feed_Parser for parsing Atom & RSS feeds For parsing normal xml documents try XML_Parser package http://pear.php.net/package/XML_Parser Vikas Jayna Chris Carter wrote: Hi, I have never done parsing of an XML ... 14 Feb 2008 02:24
[PHP-DB] How to Parse XML Feed on my PHP page Hi, I have never done parsing of an XML feed or URL on my PHP page. Basically there is a website that shows products, in order to list those products on your page you need to parse the XML URL that they provide. I have no experience to this, have been searching on this but have not got a clue. Seeking an adv... 13 Feb 2008 20:22
PHP help question To whom it may concern I'm working on a network, i don't have internet access and the application i'm working on is not published online. Platform used: PHP with MySQL. The Database is created on PC A... I'm working on PC B... and my problem is that i am not able to connect to the PC A Database using the IP... 13 Feb 2008 13:44
Mysqli returning result set from a function to callingscript Hi Radek, Are you looking for something like the fetchAll function? http://php.net/manual/en/function.PDOStatement-fetchAll.php /Tobias Radek Zajkowski wrote: Hi all, we've trying to write a wrapper class that would execute a prepared statement and return obtained dataset/resultset to the call... 11 Feb 2008 09:31 |