drtanz Posted July 29, 2007 Share Posted July 29, 2007 hi i was wondering whether tools such as codecharge studio and webdev are commonly used in the php community. They seem to be quite powerful and claim to save a lot of coding time for developers, what are your thoughts? thanks Link to comment https://forums.phpfreaks.com/topic/62260-php-rad-tools/ Share on other sites More sharing options...
cooldude832 Posted July 29, 2007 Share Posted July 29, 2007 since php is open source a lot of prefabricated scripts are out there, the best way to make your life easy with php is to develop a function libarry that you can use that contains all your basic functions like many people take a basic update mysql query as a function and say <?php function update($table,$where,$data){ $q = "Update".$table."SET "; foreach($data <= $key as $value){ $q .= $key." + ".$value; } $q .= " Where "; foreach($where <= $key as $value){ $q .= $key." + ".$value; } mysql_query($q) or die(mysql_error()); } ?> as an example. Link to comment https://forums.phpfreaks.com/topic/62260-php-rad-tools/#findComment-309879 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.