tags:

views:

71

answers:

3
+1  Q: 

Zend Error

Hello,

How i insert my username, Password values to database using Zend framework.

And how i get the values from the database using zend framework.

Help me...................................

+2  A: 

Follow the QuickStart tutorial. It will explain and demonstrate the basics of using Zend Framework.

ceejayoz
+1  A: 

Do you have any knowledge of working with databases in PHP? you should definitely start there before jumping into frameworks. When you have the basic understanding of how PHP and databases interact, transitioning that into a good framework like Zend's should not be too difficult.

The Zend Framework manual has a pretty comprehensive overview on everything it can do with databases.

Eran Galperin
A: 
$db = new Zend_Db(....);
$data = array('username'=>'thomaschaaf', 'password'= md5('secret'));
$db->insert('field', $data);
Thomaschaaf