Forum: PHP 10 Days Ago |
| Replies: 15 Views: 423 You need to use DOM (http://php.net/manual/en/book.dom.php) api. |
Forum: PHP 23 Days Ago |
| Replies: 1 Views: 205 Use phpinfo(INFO_MODULES) (http://php.net/manual/en/function.phpinfo.php) or get_loaded_extensions() (http://www.php.net/manual/en/function.get-loaded-extensions.php). |
Forum: PHP 25 Days Ago |
| Replies: 2 Views: 287 For live video over the network you need a streaming server. |
Forum: PHP 29 Days Ago |
| Replies: 3 Views: 348 Take a look at php crowler (http://sourceforge.net/projects/php-crawler/), an open source project. I think it will help you to understand the basic features of crawler. |
Forum: PHP 30 Days Ago |
| Replies: 3 Views: 287 Read PHP manual page - http://www.php.net/manual/en/image.setup.php |
Forum: PHP 32 Days Ago |
| Replies: 1 Views: 223 Take a look at this article - http://www.devarticles.com/c/a/HTML/The-power-of-DIV-with-IFRAME/ |
Forum: PHP 32 Days Ago |
| Replies: 2 Views: 223 Take a look at http://php.net/manual/en/features.file-upload.php. |
Forum: PHP 32 Days Ago |
| Replies: 3 Views: 279 Have you visited - http://upcoming.yahoo.com/services/api/? |
Forum: PHP Nov 7th, 2009 |
| Replies: 3 Views: 239 Take a look at this link - http://php.net/manual/en/function.require-once.php |
Forum: PHP Nov 6th, 2009 |
| Replies: 3 Views: 239 You can use the following code,
<?php
$cn = new mysqli("localhost","user","pw","db");
if(!$cn) die("Fails");
$result=$cn->query("select * from TableName");
if(!result) die("Fails");
... |
Forum: PHP Nov 6th, 2009 |
| Replies: 2 Views: 375 session.gc_maxlifetime is based off of the last time a session file was modified. So every time a session file is modified or a session_start() is called in a separate page, the countdown to... |
Forum: PHP Nov 6th, 2009 |
| Replies: 2 Views: 231 If you're setting the 'To' and/or 'Recipient' header multiple times, the SMTP server could interpret that as separate e-mail address, thus you'll receive the multiple e-mails.
Maybe check your... |
Forum: PHP Nov 6th, 2009 |
| Replies: 20 Views: 500 You can use AJAX to post form data. Take a look at this link http://www.captain.at/howto-ajax-form-post-request.php |
Forum: PHP Nov 5th, 2009 |
| Replies: 6 Views: 309 Use array subscripted identifier for name attribute.
<body>
Select file <input name="ufile[]" type="file" />
Select file <input name="ufile[]" type="file" />
Select file <input name="ufile[]"... |
Forum: PHP Oct 8th, 2009 |
| Replies: 4 Views: 1,145 Use directory functions - http://us2.php.net/manual/en/function.readdir.php
<?php
$dirsource = "D:/files/images";
$dirdest = "D:/files/dest";
recursive_copy($dirsource, $dirdest);
... |
Forum: PHP Sep 16th, 2009 |
| Replies: 21 Views: 796 Use >= or <= operator instead of =. |
Forum: PHP Sep 10th, 2009 |
| Replies: 21 Views: 796 Try this,
$result = mysql_query("SELECT * FROM lease_center WHERE LAPeriodEnd=(current_date() - INTERVAL 3 MONTH))");
if($result) {
while($row = mysql_fetch_array($result)) {
....
... |
Forum: PHP Sep 10th, 2009 |
| Replies: 21 Views: 796 Use Date Time functions (http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html#function_date-add),
select * from test where tdate=(current_date() - INTERVAL 3 MONTH); |
Forum: PHP Sep 9th, 2009 |
| Replies: 13 Views: 1,811 cwarn23,
I doubt you'll find a free SMS service. The usual approach is to find a gateway provider or broker that has the kind of service your after. |
Forum: PHP Sep 9th, 2009 |
| Replies: 3 Views: 296 Take a look at this Thread (http://stackoverflow.com/questions/1262327/which-is-the-best-php-framework-to-use-for-large-scale-web-applications) |
Forum: PHP Sep 9th, 2009 |
| Replies: 20 Views: 521 Great tutorials links,
A simple tutorial (http://in2.php.net/tut.php)
PHP Tutorial (http://www.w3schools.com/PHP/DEfaULT.asP) |
Forum: PHP Sep 2nd, 2009 |
| Replies: 8 Views: 547 Have a look at this link - Arrays (http://in.php.net/manual/en/language.types.array.php) |
Forum: PHP Sep 2nd, 2009 |
| Replies: 8 Views: 547 Create an array of array,
$ar=array();
$ar[]=array("no"=>10);
.... |
Forum: PHP Sep 2nd, 2009 |
| Replies: 1 Views: 267 Merge both those two arrays. |
Forum: PHP Sep 2nd, 2009 |
| Replies: 8 Views: 547 Implement javascript code. Is there any problem? |
Forum: PHP Jul 31st, 2009 |
| Replies: 2 Views: 838 Welcome,
Please follows this link - http://www.webdevelopment2.com/cakephp-installation-guide-just-add-water-and-2-medium-eggs/ |
Forum: PHP Jul 31st, 2009 |
| Replies: 3 Views: 176 Thanks,
Mark this thread as a "Solved". |
Forum: PHP Jul 31st, 2009 |
| Replies: 3 Views: 176 I didn't find any mistake in your code. Embed fields with apostrophe - may be a name of field violates mysql.
mysql_query("UPDATE `users` SET `key` = '$keys' WHERE `id` = '$id'"); |
Forum: PHP Jul 31st, 2009 |
| Replies: 2 Views: 402 May be this will help you,
header("Cache-Control: maxage=1"); //In seconds |
Forum: PHP Jul 28th, 2009 |
| Replies: 16 Views: 964 No, nothing wrong to store/install a software. You may install anywhere. |
Forum: PHP Jul 28th, 2009 |
| Replies: 16 Views: 964 Do not move your XAMPP folder into another driver. Just leave it as it was. You have to change the location of web-site folder as I said in previous post.
For example, xampp is installed in c:\xampp... |
Forum: PHP Jul 28th, 2009 |
| Replies: 16 Views: 964 #
# This is the main Apache HTTP server configuration file. It contains the
# configuration directives that give the server its instructions.
# See <URL:http://httpd.apache.org/docs/2.2/> for... |
Forum: PHP Jul 28th, 2009 |
| Replies: 16 Views: 964 Open httpd.conf file located under conf folder in
apache folder. (apache/conf/httpd.conf)
Edit (httpd.conf)it in Text editor and change the path of root directory.
DocumentRoot... |
Forum: PHP Jul 25th, 2009 |
| Replies: 2 Views: 165 1. Create a folder say "test" under htdocs.
2. Create a file say "index.php" into test folder,
<?
print "Hello World";
?>
3. Start xampp services - web server (apache)
4. Open web-browser... |
Forum: PHP Jul 24th, 2009 |
| Replies: 9 Views: 497 screenRes.js
switch(screen.width) {
case 640: goToPage('640x480.htm'); break;
case 720: goToPage('720x480.htm'); break;
case 800: goToPage('800.htm'); break;
case 848:... |
Forum: PHP Jul 24th, 2009 |
| Replies: 9 Views: 497 ayesha,
Read this - http://javascript.internet.com/page-details/screen-resolution-detect-redirect.html |
Forum: PHP Jul 19th, 2009 |
| Replies: 7 Views: 415 elamigosam,
Only an expert can write tutorials. HTML/Javascript/CSS/PHP presents that tutorials. |
Forum: PHP Jul 18th, 2009 |
| Replies: 11 Views: 521 You may use $_REQUEST for the same. |
Forum: PHP Jul 18th, 2009 |
| Replies: 2 Views: 226 xuexue,
Joomla is a free content management system entirely written with PHP.
http://www.joomla.org/
http://developer.joomla.org/
http://www.joomla.org/about-joomla/getting-started.html |
Forum: PHP Jul 18th, 2009 |
| Replies: 9 Views: 734 zeusofolus,
Which foreach? Post only a section of source code where you got some problems. |