|
|
|
| You are here : HOME > PHP |
 |
 |
PHP 6 and MySQL 5 for Dynamic Web Sites: Visual QuickPro Guide
Price : $49.99 $20.00
Average
Customer Rating : Not
yet rated |
|
Editorial Review :
It hasn't taken Web developers long to discover that when it comes to creating dynamic, database-driven Web sites, MySQL and PHP provide a winning open source combination. Add this book to the mix, and there's no limit to the powerful, interactive Web sites that developers can create. With step-by-step instructions, complete scripts, and expert tips to guide readers, veteran author and database designer Larry Ullman gets right down to business: After grounding readers with separate discussions of first the scripting language (PHP) and then the database program (MySQL), he goes on to cover security, sessions and cookies, and using additional Web tools, with several sections devoted to creating sample applications. This guide is indispensable for intermediate- to advanced level Web designers who want to replace their static sites with something dynamic. In this edition, the bulk of the new material covers the latest versions of both technologies: PHP 6 (due out in 2008) and MySQL 5 (available now). The book's publication date is likely to beat the official release of PHP 6, making it one of the first books available on the subject.
Customer Review :
No review yet |
 |
Wicked Cool PHP: Real-World Scripts That Solve Difficult Problems
Price : $29.95 $17.13
Features
: - ISBN13: 9781593271732
- Condition: New
- Notes: BRAND NEW FROM PUBLISHER! 100% Satisfaction Guarantee. Tracking provided on most orders. Buy with Confidence! Millions of books sold!
Average
Customer Rating : Not
yet rated |
|
Editorial Review :
Instead of starting at "Hello World," Wicked Cool PHP assumes that you're familiar with the language and jumps right into the good stuff. After you learn the FAQs of life-the most commonly wished for PHP scripts-you'll work your way through smart configuration options and the art of forms, all the way through to complex database-backed scripts. Wicked Cool PHP contains a wide variety of scripts to process credit cards, check the validity of email addresses, template HTML, and serve dynamic images and text. The 76 easily implemented scripts will also teach you how to: Send and receive email notifications Track your visitors' behavior with cookies and sessions Override PHP's default settings Manipulate dates, images, and text on the fly Harness SOAP and other web services Create an online poll, ecard delivery system, and blog But it's not all fun and games: Security is a big concern when programming any web application. So you'll learn how to encrypt your confidential data, safeguard your passwords, and prevent common cross-site-scripting attacks. And you'll learn how to customize all of the scripts to fit your own needs. Dynamic Web content doesn't have to be difficult. Learn the secrets of the craft from two experienced PHP developers with Wicked Cool PHP.
Customer Review :
No review yet |
 |
PHP and MySQL 24-Hour Trainer
Price : $39.99 $22.04
Average
Customer Rating : Not
yet rated |
|
Editorial Review :
Step-by-step lessons for using PHP and MySQL in a unique book-and-video combination Assuming no previous experience with PHP or MySQL, this book-and-video package is ideal reading for anyone who wants to go beyond HTML/CSS in order to provide clients with the most dynamic web sites possible. The approachable tone breaks down the basics of programming and PHP and MySQL in individual lessons starting with the installation of the programs necessary to run PHP. You begin with a static web site and then watch and learn as PHP functionality is added as you work through the lessons. When working with databases, the MySQL database is introduced with demonstrations that show how to interact with it. The accompanying videos enhance your learning experience, as each lesson in the book is portrayed in the video exercises. Lessons include: • Getting started with PHP • Setting up your workspace • Adding PHP to a web page • Learning PHP syntax • Working with variables • Debugging code • Working with complex data • Making decisions • Repeating program steps • Learning about scope • Reusing code with functions • Creating forms • Introducing object-oriented programming • Defining classes • Using classes • Using advanced techniques • Handling errors • Writing secure code • Introducing databases • Introducing MySQL • Creating and connecting to the • Creating tables • Entering data • Selecting data • Using multiple tables • Changing data • Deleting data • Preventing database security issues • Creating user logins • Turn the case study into a content management system Note: As part of the print version of this title, video lessons are included on DVD. For e-book versions, video lessons can be accessed at wrox.com using a link provided in the interior of the e-book.
Customer Review :
No review yet |
 |
Web Database Applications with PHP & MySQL, 2nd Edition
Price : $49.99 $16.78
Average
Customer Rating : Not
yet rated |
|
Customer Review :
No review yet |
 |
PHP in a Nutshell: A Desktop Quick Reference
Price : $29.95 $13.48
Features
: - ISBN13: 9780596100674
- Condition: New
- Notes: BRAND NEW FROM PUBLISHER! 100% Satisfaction Guarantee. Tracking provided on most orders. Buy with Confidence! Millions of books sold!
Average
Customer Rating : Not
yet rated |
|
Editorial Review :
Now installed on more than 20 million Internet domains around the world, PHP is an undisputed leader in web programming languages. Database connectivity, powerful extensions, and rich object-orientation are all reasons for its popularity, but nearly everyone would agree that, above all, PHP is one of the easiest languages to learn and use for developing dynamic web applications. The ease of development and simplicity of PHP, combined with a large community and expansive repository of open source PHP libraries, make it a favorite of web designers and developers worldwide. PHP in a Nutshell is a complete reference to the core of the language as well as the most popular PHP extensions. This book doesn't try to compete with or replace the widely available online documentation. Instead, it is designed to provide depth and breadth that can't be found elsewhere. PHP in a Nutshell provides the maximum information density on PHP, without all the fluff and extras that get in the way. The topic grouping, tips, and examples in this book complement the online guide and make this an essential reference for every PHP programmer. This book focuses on the functions commonly used by a majority of developers, so you can look up the information you need quickly. Topics include: - Object-oriented PHP
- Networking
- String manipulation
- Working with files
- Database interaction
- XML
- Multimedia creation
- Mathematics
Whether you're just getting started or have years of experience in PHP development, PHP in a Nutshell is a valuable addition to your desk library.
Customer Review :
No review yet |
|
More
Results : [First] [Prev] 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 [Next] [Last]
Quick Link : 40 | 60 | 80 | 100 | 120 | 140 | 160 | 180 | 200 | 220
|
|
Questions & Answers
Question : How to get a PHP file to be included across files in different directories?
Currently I have created some php based webpages and uploaded them to my web hosting server.It has a PHP 5.1.6installed.With this I am able to include files only that are in the same directory(they work well using require() fn).If not an error message displaying some "no such file" in directory appears in the page.I would like to use them to be included in different direcetories.What should I do?
Answer:
create the directories and include the names when using the require() function.example :your index.php is in the root directory/index.phpand you have a directory with your other php files in/lib/other.phpso in index.php you will haverequire("lib/other.php");
|
Question : How do I upload a php site in dreamweaver properly?
I loaded a pre-built site into dreamweaver. Half of the pages were built in php format. I built a new page to add to the site with new links and pictures. But when I uploaded the site to the web, neither the pictures nor the links worked. Any ideas what might have caused this? Or something I missed that would prevent a newly added page from working? Settings etc? I'm using Dreamweaver CS4. Thanks in advance.
Answer:
Try using the FTP protocol to upload the files manually. Your host most probably supports FTP so all you need to do is download a client like FileZilla and then you can upload the files directly to your website.
|
Question : What is the php regular expression to get everything before a certain character?
For instance, I have the following string:table:columnI need to get "table" as the result of the php regular expression.So, I need everything before the ":" symbolAfter that regular expression is performed, I would also like to get everything after the ":" symbol, or "column" as well.
Answer:
If you only have one ":" symbol in the string, you can use this:$string = explode(":", $string);This puts the two halves into an array. So:$table = $string[0];$column = $string[1];
|
Question : How do I give a PHP script permission to create temporary directories?
I am running a Apache 2.2 PHP 5 Enabled server on my Windows 7 computer. I have a script that keeps throwing a 'cannot create temporary directory' exception. I need the equivelant of chmod(777) for it to work, is there any way I can get the same permissions as chmod(777) to ACL security?
Answer:
two solutions:#1 - make the directory yourself, right click it, and go to properties -> Under this panel, find the "Security" panel. Under here, there are permissions - you'll want to find the USER GROUP that the Program belongs to: I.E. System, Administrator, "Your User name Here".Then click on this group amd mofiy permissions and properties.Or there should be a "Global" permissions -The way it breaks down is like this.the 'Full Control' box is equivalent to chmod 777Then you'll see the normal, read, write, and execute.Make sure these are all checked.Solution #2:The exact same steps as above, but instead of making the directory yourself, right click on the 'top-level' directory that your program is trying to write to, and follow the security instructions outlined above.
|
Question : PHP: How to store system configurations on a database and use them as constants?
I'd like to have constants in PHP which are retrieved from a database. Essentially, I'd like to create a page that can update this database table so the next time I load the site, it will use these newly updated constants which are again retrieved from the database.I'm looking for things that can be changed directly by the admin without needing to go into the source code and manually changing the hardcoded constants file.
Answer:
Make a settings file and put this in it (settings.php)Now just put this in any file that needs to access the databaseinclude ("settings.php");$link = mysql_connect("$cfg_server","$cfg_username","$cfg_password")or die("error ");mysql_select_db ("$cfg_database", $link)or die("error ");
|
Question : How to publish php file that I just edited back to my website?
I used FTP program that is offered by default by GoDaddy and downloaded a file to my PC. After chaning this php file using MS Notepad, I uploaded it back on to my website's back end, but don't know how to make it so that the edited php file publishes on my website. Please help. Thanks.
Answer:
If you uploaded it to the Public website section, it should be there... Just go to the page you are looking to see. If it doesn't work, maybe you didn't upload the right page, but the older page. Just uploading the file to the Public section generally makes the site viewable.
|
Question : How to connect a textbox to a database in php using ms access?
I have an order form desined in php. To use it I need to connect it to a database. I use Yahoo hosting service. My website is www.ibexstudents.com. It has no support for asp but supports php, javascript and perl. Any other innovative approaches are welcomed.Please give me the full procedure as I am not very good at programming. Thank you.
Answer:
Assuming you have odbc driver , and dsn registered on your webserver, this is how you do it.Now let us assume you want to update your database with something that user inputs in your text box, lets say his Display name on your website, and password.Lets assume textbox for name is txtname and for password (type="password" for asterics) is txtpass.When user clicks on submit (name btnsubmit), lets say this info should be updated in a table called User in your database $db. Also assume form method is post and action is on same page (example newuser.php)}Ofcourse this code dont handle any errors/exceptions and if u want to fetch data from database. u can use method$recordset=odbc_exec($conn,$query);odbc_fetch_row($recordset);where query could be something like select * from User.Good Luck!
|
Question : How do i create a php page that will automatically redirect & login to a password protected directory?
How do i create a php page that will automatically redirect & login to a password protected directory on my website, so that the user doesn't have to input the user & password to access the site.
Answer:
it involves the use of $_COOKIE. I would not recommend you automatically redirecting someone to "protected" content.Thumb through my script and use what you need. Reference the link below because yahoo will truncate my answer./*************************** login.class.php***************************/class user{//To track the switch/errors through outvar $login_error;//constructorfunction user($UserInput){$this->login_form();}//End function//Just a simple login formfunction login_form(){echo "";}//End Functionfunction validate_user($UserInput){//my chosen user name and password pattern$this->user_name_pattern = ("^[a-zA-Z0-9]{5,15}$");$this->password_pattern = ("^[a-zA-Z0-9\!\@\#\$\%\^\&\*\`\~\_]{5,15}$");//JavaScript History -1$this->go_back = (Go Back);$this->success_login_redirect = "http://dzsoundnirvana.com/";switch($UserInput){case ($UserInput['FLU'] == "" || !ereg($this->user_name_pattern,$UserInput['FLU'])):$this->login_form();echo "Invalid user name. Try again or $this->go_back! ";$this->login_error == false; break;case ($UserInput['FLP'] == "" || !ereg($this->password_pattern,$UserInput['FLP'])):$this->login_form();echo "Invalid password. Try again or $this->go_back! ";$this->login_error == false;break;}if($this->login_error === false){//Or you can redirect to a "Forgot password/user name" page or leave it alone. This will kill the script. No output after though!exit;}else{//Now we go to the Database and validate the user$this->db();$this->query_string = "SELECT * FROM users WHERE user_name='$UserInput[FLU]'&& password='" . md5($UserInput['password']) . "'";$this->query = mysql_query($this->query_string);//Error check the queryif(!$this->query){echo "System error! Contact the system administrator! or $this->go_back";//use this for debugging (below), Delete the // at the beginning//echo mysql_error();}else{//Need to check if more than 1 user exists if so....throw HACKING error (not supported here)..another class$this->num_rows = mysql_num_rows($this->query);if($this->num_rows > 1){echo "Hacking warning";exit;}else{//Get the user information and set into the $_SESSION and then redirect to the directed page$this->user_information = mysql_fetch_assoc($this->query);//Put all user data into $_SESSIONforeach($this->user_information as $key => $value){$_SESSION[$key] = $value;//Now we redirect to the page specifiedecho "";echo "If you are not redirected success_login_redirect\" target=\"_parent\">Click here to continue";}}}//else}//if($this->login_error === false)/else{}//End functionfunction db(){$this->db_link = mysql_connect("data_base_host","data_base_user","data_base_password]);//Select the DB$this->db_select = mysql_select_db("data_base_name");}}//End Class?>
|
Question : How can i run a php or mysql script automatically every month, quarter or year?
I have a script for a MySQL Database that adds up all of the numbers in a column and sets it back to zero (its pretty much like an adjusting entry). I don't want to clear the contents completely because I need them for reporting purposes. I want either PHP or MySQL to run a script to do this automatically so I don't forget to do it. What is the best way in going about doing this?
Answer:
Have you hosted this on a Linux cPanel Server.. If es.. then you might have heard of Cron Jobs.. Cron jobs are scheduled tasks that take place at predefined times or intervals on the server.. This feature is available on cPanel servers.. Check the below link for details :http://docs.cpanel.net/twiki/bin/view/AllDocumentation/CpanelDocs/CronJobs
|
Question : How can i search php programmers to build my website ?
hi alli am planning to create a new php file hosting website (like rapidshare) and searching a php programmers to do this for me ,,where can i find php programmers ?where to search ?thanks
Answer:
Hi We are a Web design & Development company from india. You can mail your requirements to mantrainsight@gmail.comWe would be happy to work for you at a reasonable rate.ReagardsAkshayCEOmantrainsightIndia
|
Powered by Yahoo! Answers
|
|