We Recommend

Programming in Objective-C Programming in Objective-C
Programming in Objective-C is a concise, carefully written tutorial on the basics of Objective-C and object-oriented programming. The book makes no assumption about prior experience with object-oriented programming languages or with the C language (upon which Objective-C is based). And because of this, both novice and experienced programmers alike can use this book to quickly and effectively learn the fundamentals of Objective-C.


Posted By

2501 on 05/01/08


Tagged

mysql php textmate


Versions (?)


db_connect


Published in: Other 


  1.  
  2. function db_connect (){
  3.  
  4.  
  5. $connection = @mysql_connect('','','');
  6.  
  7. if (!$connection)
  8. {
  9. return false;
  10. }
  11.  

Report this snippet 

You need to login to post a comment.