User War Coder - Stack Overflowmost recent 30 from stackoverflow.com2010-03-21T01:12:55Zhttp://stackoverflow.com/feeds/user/53804http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/838028/choosing-the-right-php-framework2Choosing the right PHP frameworkWar Coderhttp://stackoverflow.com/users/538042009-05-08T02:51:50Z2009-12-12T18:20:53Z
<p>Hello guys, </p>
<p>I want to start working on a project and this time around i want to make sure of a framework and see its like. i am having a little problem choosing a framework to work with. At the moment one of my motivations of using a framework is the MVC pattern. I know how useful it is. However, the framework i want to use must be an easy to learn and straight forward framework as i do not have much time. I see many people complain about understanding this frameworks. Since there is no time for me to start testing them one after the other, i need you guys to please give advises and guides as you have always been doing. Thanks very much.</p>
http://stackoverflow.com/questions/789874/better-php-mysql-html-and-javascript-ide0Better PHP,MySql,HTML and JavaScript IDEWar Coderhttp://stackoverflow.com/users/538042009-04-25T22:42:49Z2009-12-11T04:57:27Z
<p>Hello guys,</p>
<p>I am currently using the below IDE's. They serve their purposes but am wondering if there are better ones out there that i can switch to.</p>
<p>phpDesigner v6.2.5 (For PHP)
Navicat 8.0.29 (For MySql)
Dreamweaver CS3 (For HTML & CSS)
Spket IDE (For JavaScript)</p>
<p>Thats my collection of production tools. Wondering if there is anyone of them i can switch to a better one.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1242599/css-browser-compatibility-issues1CSS Browser Compatibility issuesWar Coderhttp://stackoverflow.com/users/538042009-08-07T02:29:17Z2009-09-02T13:03:28Z
<p>I recently designed a web application for a client. I used CSS for a layout of the application. I tested the layout on IE7, Mozilla 3.0.1, Google Chrome 2.0.xxx, Safari 3.1 and Opera 9.51.</p>
<p>They all displayed correctly without problems. After the delivery of the application my client noticed it had compatibility issues with IE6. The site was not displayed correctly.</p>
<p>How do i get to fix this problem? I don't have IE6 on my system to even try and fix it. Each time i try to downgrade my browser to IE6,IE will stop working. Is there a way i can get an environment that can simulate IE6 online.</p>
<p>Secondly, is making use of css frameworks going to solve the compatibility problem and even if i want to use a css framework, which one is better apart from blueprint css.</p>
<p>Thanks for your time.</p>
http://stackoverflow.com/questions/1267279/webservices-in-php0Webservices in PHPWar Coderhttp://stackoverflow.com/users/538042009-08-12T16:32:00Z2009-08-16T05:43:14Z
<p>Am a stranger to web services and I need to integrate web services into an existing application. The details to be passed to the web services are </p>
<ul>
<li>Unique reference</li>
<li>Amount</li>
<li>Status</li>
<li>Status Description</li>
</ul>
<p>This web service will update the website on the status of a transaction.</p>
<p>what is the best way to start? where do i go from here? </p>
http://stackoverflow.com/questions/902857/php-getting-array-type0PHP: Getting array typeWar Coderhttp://stackoverflow.com/users/538042009-05-24T01:28:26Z2009-07-27T03:07:45Z
<p>Is there a php function that someone can use to automatically detect if an array is an associative or not, apart from explictly checking the array keys?</p>
http://stackoverflow.com/questions/1143133/mysql-record-not-exceeding-16-3841mysql record not exceeding 16,384War Coderhttp://stackoverflow.com/users/538042009-07-17T13:05:24Z2009-07-20T23:50:01Z
<p>I have two tables that i am inserting records into. I am using PHP to execute the sql query to perform the operation. When performing the insert operation, i insert 10,000 new records in two tables. One table completes insert process successfully on all operations while the second table completes the first insert operation but stops the insertion on the second operation when it gets to 6,384 it will stop inserting new records.</p>
<p>below is the table structure for the two tables:</p>
<pre><code>CREATE TABLE `client_package` (
`package_id` varchar(15) NOT NULL,
`client_id` int(11) NOT NULL,
`subaccount_id` int(11) NOT NULL,
`receiver_name` varchar(50) NOT NULL,
`receiver_address` varchar(100) NOT NULL,
`receiver_city` varchar(20) NOT NULL,
`receiver_state` int(3) NOT NULL,
`receiver_phone` varchar(20) NOT NULL,
`receiver_email` varchar(40) NOT NULL,
`shipment_date` varchar(15) NOT NULL,
`delivery_date` varchar(15) NOT NULL,
`item_type` varchar(30) NOT NULL,
`item_weight` varchar(20) NOT NULL,
`item_quantity` varchar(15) NOT NULL,
`package_status` int(3) NOT NULL,
`date` varchar(12) NOT NULL,
PRIMARY KEY (`package_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
CREATE TABLE `package_tracking` (
`id` int(11) NOT NULL auto_increment,
`package_id` varchar(15) NOT NULL,
`package_status` int(3) NOT NULL,
`package_note` varchar(100) NOT NULL,
`update_time` varchar(15) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=latin1;
</code></pre>
<p>The table giving me the problem is client_package. Also, before inserting a new record in client_package table, i first check if the generated package_id already exist and if it does i generate another one. I don't know if thats wot is actually causing the problem.</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/695443/css-not-applying-correctly-in-zendframework0CSS not applying correctly in ZendFrameworkWar Coderhttp://stackoverflow.com/users/538042009-03-29T21:45:47Z2009-06-29T03:07:22Z
<p>Hello guys, am new to zend framework. Am having a little problem and a real hard time solving it myself.</p>
<p>If i access my zend application by going to <a href="http://localhost/zendapplicationfolder/contact" rel="nofollow">http://localhost/zendapplicationfolder/contact</a> it displays correctly with css applying correctly but if i access the zend application by going to <a href="http://localhost/zendapplicationfolder/contact/" rel="nofollow">http://localhost/zendapplicationfolder/contact/</a> (added a forward slash) , the page displays but css is not applied, but if i view the source, the css link is embedded normally between the head tags.</p>
<p>pls i need urgent help with this.</p>
<p>thanks.</p>
http://stackoverflow.com/questions/1038916/reading-image-from-ajax-response0Reading Image from AJAX responseWar Coderhttp://stackoverflow.com/users/538042009-06-24T15:00:48Z2009-06-24T15:05:00Z
<p>I have a url that when requested will return an image. I want the url to be requested through an AJAX request. The ajax request returns binary data which is what is being deplayed. but i want the actual image displayed not the binary data. Am using php on the server side and i have set the below headers:</p>
<pre><code>header("Cache-Control: no-cache, must-revalidate");
header ("Content-type: text/jpg; charset=windows-1251");
</code></pre>
<p>Please i need advise on what i need to do.</p>
http://stackoverflow.com/questions/1031710/user-input-filtering-in-php0User Input filtering in PHPWar Coderhttp://stackoverflow.com/users/538042009-06-23T10:18:25Z2009-06-23T10:40:20Z
<p>Hello guys,</p>
<p>Am currently working on an application that requires users to submit posts and comments which is displayed on the site. As we all know that user input can't be trusted so i used htmlspecialchars($string,ENT_QUOTES) to process user's posts and comments. </p>
<p>Now, i want some certain html tags ignored. such as <code><b><br /></code> and a few more tags. How can i do it so that htmlspecialchars ignores some tags while it filters the others. </p>
http://stackoverflow.com/questions/837371/htaccess-file-restriction0htaccess file restrictionWar Coderhttp://stackoverflow.com/users/538042009-05-07T22:24:03Z2009-05-13T10:30:43Z
<p>I have a directory on my webserver. It does not have an index page. so when u access the directory via a web browser it lists the files in it. Now i want to create a htaccess file that can block the directory listing so that when you access it via the web browser, the files in the directory would not be listed but would be able to access the files by appending the name of the file you wish to access to the url making it a full part to the file. Also the htaccess file should be able to restrict access from all but files with a particular extention. Thanks.</p>
http://stackoverflow.com/questions/845726/zend-framework-right-way-to-retrieve-data-from-database1Zend Framework: right way to retrieve data from databaseWar Coderhttp://stackoverflow.com/users/538042009-05-10T17:34:55Z2009-05-10T18:14:44Z
<p>hello guys,</p>
<p>am working on a project with zend framework and i need your advise on the right way to fetch data from the database.</p>
<p>Am making use of Zend_Layout to load my template. The appropriate view is then loaded into the template. </p>
<p>On the template, there is supposed to be a section that displays data from the database (e.g Categories). Since i am using one template, the data will be displayed on every page requested irrespective of the controller or action called. </p>
<p>I know its not a good practise to fetch the data from the template and it wouldn't be a good idea to fetch the data from each action executed. I dont know if the right thing to do is to use helpers to fetch the data from the database, but wouldn't that go against the whole idea of MVC. </p>
<p>I need advise from you guys.</p>
http://stackoverflow.com/questions/832036/php-api-for-access-social-networks0PHP API for access social networksWar Coderhttp://stackoverflow.com/users/538042009-05-06T22:10:41Z2009-05-06T22:23:02Z
<p>hello guys,</p>
<p>am looking for a php api that can access social networks like facebook,myspace,orkut and so many more of them. I should be able to upload pictures and videos to my favourite social networking account and also post get updates from thems, change status, make comments and similar stuffs. Just wondering if there is anything like that or similar to it.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/762894/mysql-selecting-from-multiple-tables2MySql: Selecting from multiple tablesWar Coderhttp://stackoverflow.com/users/538042009-04-18T04:33:14Z2009-04-18T18:59:56Z
<p>Hello guys, i dont know how to go about this but i need urgent assistance from you guys. </p>
<p>I have two tables namely States, Package_Details. Below are the details of the table.</p>
<p>States</p>
<ul>
<li>state_id </li>
<li>state_name</li>
</ul>
<p>Package_Details</p>
<ul>
<li>id</li>
<li>sender_state //Stores state with state ID</li>
<li>receiver_state //Stores state with state ID</li>
</ul>
<p>Now i am having problems constructing a Sql Query that will select and display the records in the Package_Details replacing the sender_state and receiver_state with the corresponding state_name in States table.</p>
<p>Thanks very much for your time.</p>
http://stackoverflow.com/questions/432192/singleton-in-php1Singleton in PHPWar Coderhttp://stackoverflow.com/users/538042009-01-11T02:13:44Z2009-03-20T17:29:34Z
<p>am working on a web app in PHP that requires users to register and login with their credentials. However, i am using the singleton pattern in all my PHP class files. </p>
<p>I have something bothering my mind that i would like to clarify. For instance, When the application goes live and we have several users on the site at the same time, doing similar things hereby calling the same php classes (behind the scene). Now, since singleton prevents multiple instance of a class and returns just a single instance. Would it by any chance cause a user's action on the site to conflict with other user's action.</p>
<p>e.g I have a class called Search.php and it is a singleton class. This class handles all search queries from the website. If several users are performing a search on the site at the same time, will their actions conflict with each other since its just a single instance of the Search class that can be created.</p>
<p>Thanks very much for your time.</p>
http://stackoverflow.com/questions/633890/sign-in-into-a-page-using-php/640471#6404710Answer by War Coder for Sign in into a page using PHPWar Coderhttp://stackoverflow.com/users/538042009-03-12T21:02:57Z2009-03-12T21:02:57Z<p>i suggest you give us more detailed information to enable us help you better. because we can't seem to get a full understanding of what you really want to achieve.</p>
http://stackoverflow.com/questions/633890/sign-in-into-a-page-using-php/633915#6339152Answer by War Coder for Sign in into a page using PHPWar Coderhttp://stackoverflow.com/users/538042009-03-11T09:54:47Z2009-03-11T09:54:47Z<p>simply have your other PHP file post the required login credentials to your login page's action url</p>
http://stackoverflow.com/questions/628880/connecting-to-a-cdma-network-in-from-java1Connecting to a CDMA network IN from JavaWar Coderhttp://stackoverflow.com/users/538042009-03-10T03:44:09Z2009-03-10T09:44:11Z
<p>hello guys,</p>
<p>Am using java to develop program that receives and processes SMS messages. I have been able to code the processing of the SMS Messages received and its working perfectly. Now the challenge i have is receiving the the SMS Messages from the CDMA network. When the application is about to go live, the CDMA network will setup a VPN connection which will enable my application to connect to its IN or its IN connect to my application to deliver the SMS Messages to my application over the VPN. Now, in what format will be SMS be sent to the application? Or will i just need to listen on the VPN and read data's when they become available? Thank you very much for your time.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/617251/how-can-i-add-search-functionality-into-my-php-website1How can I add search functionality into my PHP website?War Coderhttp://stackoverflow.com/users/538042009-03-06T00:09:08Z2009-03-06T00:20:45Z
<h3>Duplicate:</h3>
<p><a href="http://stackoverflow.com/questions/386914/how-would-i-implement-a-simple-site-search-with-php-and-mysql">How would I implement a simple site search with php and mySQL?</a></p>
<p>I want to insert a search functionality into an existing website. The site is database driven. What is the best way to achieve this? Should i just simply go ahead with the query <code>select * from tables where field like user input</code>? Is there a better way to index the site?</p>
http://stackoverflow.com/questions/578507/problem-downloading-file0problem downloading fileWar Coderhttp://stackoverflow.com/users/538042009-02-23T17:23:10Z2009-02-23T18:00:00Z
<p>I write a script to force download mp3 files from a site. The code is working very fine but the problem is that it can't download large files. I tried it with a file of 9.21mb and it downloaded correctly, but whenever i try to use the code to download a file of 25mb, it simply gives me a cannot find server page or The website cannot display the page. So i now know it has problems downloading large files. Below is the code snippet that does the downloading of files.</p>
<pre><code>header("Pragma: public");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Cache-Control: private",false);
header("Content-type: application/force-download");
header("Content-Disposition: attachment; filename=\"".$dname.".mp3\";" );
header("Content-Transfer-Encoding: binary");
header("Content-Length: ".filesize($secretfile));
$downloaded=readfile($secretfile);
</code></pre>
<p>The displayed error is: HTTP 500 Internal Server Error</p>
<p>thank u very much for ur time guys.</p>
http://stackoverflow.com/questions/526358/output-buffer0Output bufferWar Coderhttp://stackoverflow.com/users/538042009-02-08T20:53:51Z2009-02-08T21:22:28Z
<p>I am writing a php script and somewhere before my <code>header()</code> function i have printed text to the browser hereby causing my <code>header()</code> function give me a well known error:</p>
<blockquote>
<p>Warning: Cannot modify header information - headers already sent.</p>
</blockquote>
<p>Now my question is, I have the intentions of using <code>ob_start()</code> and <code>ob_flush()</code> before and after the <code>header()</code> function. But I once heard something like output buffer can affect the performance of one's application negatively. How true is that? </p>
<p>Or should I just stick with the idea of printing Javascript function to redirect the page.</p>
<p>Thanks for your time.</p>
http://stackoverflow.com/questions/1267279/webservices-in-php/1267480#1267480Comment by War Coder on Webservices in PHPWar Coderhttp://stackoverflow.com/users/538042009-08-12T19:56:56Z2009-08-12T19:56:56Zthanks so much. the area that seems to fit what i want is number 4 section which you explained. I will need you to explain more on section 4.
A user clicks a payment link which takes them to the payment processor who then processes the payment and then sends the payment status to my webservice.
Will my webserivce be receiving the payment details via a querystring or in xml. if its in xml, how do i get read the contents of the xml. thanks.http://stackoverflow.com/questions/1143133/mysql-record-not-exceeding-16-384Comment by War Coder on mysql record not exceeding 16,384War Coderhttp://stackoverflow.com/users/538042009-07-17T13:20:25Z2009-07-17T13:20:25Z10,000 records insert correctly into package_tracking (which i dont check package_id) without any problem. If i then upload fresh new records into into both tables, client_package won't accept new records while package_tracking keeps accepting. am really confused.http://stackoverflow.com/questions/1038916/reading-image-from-ajax-responseComment by War Coder on Reading Image from AJAX responseWar Coderhttp://stackoverflow.com/users/538042009-06-24T17:14:36Z2009-06-24T17:14:36Zthanks for the response, how can i get to know if the image is fully loaded, as i would only like to display it when it is fully loadedhttp://stackoverflow.com/questions/845726/zend-framework-right-way-to-retrieve-data-from-database/845784#845784Comment by War Coder on Zend Framework: right way to retrieve data from databaseWar Coderhttp://stackoverflow.com/users/538042009-05-10T20:01:18Z2009-05-10T20:01:18Zthanks very much for the response. actually when i said fetch data from the database, i meant through the Model class. So u are saying it is okay for me to call the appropriate Model class directly from the template.http://stackoverflow.com/questions/838028/choosing-the-right-php-framework/842479#842479Comment by War Coder on Choosing the right PHP frameworkWar Coderhttp://stackoverflow.com/users/538042009-05-09T05:49:44Z2009-05-09T05:49:44Zdo u mind sharing ur framework with me?http://stackoverflow.com/questions/838028/choosing-the-right-php-framework/838033#838033Comment by War Coder on Choosing the right PHP frameworkWar Coderhttp://stackoverflow.com/users/538042009-05-08T07:03:56Z2009-05-08T07:03:56Zits interesting to find out that i can use useful libraries from Zend Framework in CodeIgniter. CI is getting more attention from me now.http://stackoverflow.com/questions/838028/choosing-the-right-php-framework/838051#838051Comment by War Coder on Choosing the right PHP frameworkWar Coderhttp://stackoverflow.com/users/538042009-05-08T04:19:58Z2009-05-08T04:19:58ZIs CodeIgniter similar to Zend in d idea of using what you only need. I not seen anybody say that about CodeIgniterhttp://stackoverflow.com/questions/838028/choosing-the-right-php-framework/838100#838100Comment by War Coder on Choosing the right PHP frameworkWar Coderhttp://stackoverflow.com/users/538042009-05-08T03:36:01Z2009-05-08T03:36:01Zhmmm, that is good.where are u learning it from? and can u share ur code with me?http://stackoverflow.com/questions/838028/choosing-the-right-php-framework/838033#838033Comment by War Coder on Choosing the right PHP frameworkWar Coderhttp://stackoverflow.com/users/538042009-05-08T03:05:17Z2009-05-08T03:05:17Zthanks for the swift response. I really appreciate it alot. Still on the topic and i do welcome more advise. Please tell me more about implementing my own MVC. Thankshttp://stackoverflow.com/questions/837371/htaccess-file-restriction/837389#837389Comment by War Coder on htaccess file restrictionWar Coderhttp://stackoverflow.com/users/538042009-05-08T02:53:45Z2009-05-08T02:53:45Zthanks so much,u saved so much of my time.http://stackoverflow.com/questions/837371/htaccess-file-restriction/837389#837389Comment by War Coder on htaccess file restrictionWar Coderhttp://stackoverflow.com/users/538042009-05-07T22:46:05Z2009-05-07T22:46:05Zthanks for the response. And if i want to include multple viewable files, can i seperate them with |http://stackoverflow.com/questions/789874/better-php-mysql-html-and-javascript-ide/789878#789878Comment by War Coder on Better PHP,MySql,HTML and JavaScript IDEWar Coderhttp://stackoverflow.com/users/538042009-04-25T23:42:15Z2009-04-25T23:42:15Zyeah u're right. but i always have this idea that the more i explore, the more i know. thats why i want to give other IDE's a try.http://stackoverflow.com/questions/695443/css-not-applying-correctly-in-zendframework/696012#696012Comment by War Coder on CSS not applying correctly in ZendFrameworkWar Coderhttp://stackoverflow.com/users/538042009-03-30T12:52:15Z2009-03-30T12:52:15Zsorry, my last comment didnt show the way i wanted it, but i can explain. my application, library, and css folder is in my webroot root folder. I tried what you suggested but its still not working.http://stackoverflow.com/questions/695443/css-not-applying-correctly-in-zendframework/696012#696012Comment by War Coder on CSS not applying correctly in ZendFrameworkWar Coderhttp://stackoverflow.com/users/538042009-03-30T12:50:17Z2009-03-30T12:50:17Zthanks for the response. i will give you more info on my directory layout:
webroot/
library/
application/
controllers/
models/
views/
scripts/
filters/
helpers/
layouts/
css/
index.php
.htaccess
thats the directory structure.http://stackoverflow.com/questions/695443/css-not-applying-correctly-in-zendframework/695476#695476Comment by War Coder on CSS not applying correctly in ZendFrameworkWar Coderhttp://stackoverflow.com/users/538042009-03-30T03:18:33Z2009-03-30T03:18:33Zthanks for ur time. u really tried. but haven't gotten it yet.