Forum: PHP Jul 4th, 2009 |
| Replies: 3 Views: 290 Hi..
As in C or Perl, PHP requires instructions to be terminated with a semicolon at the end of each statement.
http://sk.php.net/manual/en/language.basic-syntax.instruction-separation.php
... |
Forum: PHP Jan 24th, 2009 |
| Replies: 2 Views: 1,005 Or
http://www.tecnick.com/public/code/cp_dpage.php?aiocp_dp=tcpdf
or
http://www.fpdf.org/ |
Forum: PHP Jan 24th, 2009 |
| Replies: 5 Views: 4,532 If you need to now something about security, read this books:
http://eu.wiley.com/WileyCDA/WileyTitle/productCd-0470857447.html
or
... |
Forum: PHP Jan 24th, 2009 |
| Replies: 8 Views: 644 You are not using XAMPP so try this:
Follow insallation steps and everything is gonna be OK
http://www.thesitewizard.com/php/install-php-5-apache-windows.shtml
... |
Forum: PHP Jan 24th, 2009 |
| Replies: 2 Views: 834 http://sk.php.net/manual/en/function.ucwords.php |
Forum: PHP Jan 18th, 2009 |
| Replies: 2 Views: 658 Try to fix this line
echo 'ANSWEAR 4:<textarea name="q".$i.a4" rows="1" cols="50"></textarea><br>';
echo 'ANSWEAR 4:<textarea name="q".$i."a4" rows="1" cols="50"></textarea><br>';
missing... |
Forum: PHP Jan 17th, 2009 |
| Replies: 10 Views: 2,676 I did not mean capitalizing php start tag. I mean "FULL" php start tag "<?php" because XML files has the same start tag "<?xml". |
Forum: PHP Jan 17th, 2009 |
| Replies: 3 Views: 489 Maybe this will work as well... ??????
$uploadsDirectory = dirname(__FILE__) . '/uploaded_files/'; |
Forum: PHP Jan 17th, 2009 |
| Replies: 4 Views: 2,222 Maybe problem is here:
at first line: start tag should be full: <?PHP or at second line.
<?PHP
include($include_path . "/FastTemplate.php3");
$tpl = new FastTemplate("templates");... |
Forum: PHP Jan 17th, 2009 |
| Replies: 8 Views: 1,338 Try this:
<form action="FormToEmail.php" method="POST" name="contactform" id="form1">
<h5>Your Email</h5>
<div class="form"><input name="email" type="text" value=""/></div>
<h5>Your... |
Forum: PHP Jan 17th, 2009 |
| Replies: 10 Views: 2,676 Try this:
<?PHP
Header("content-type: application/x-javascript");
ob_start();
include 'all.php';
ob_end_clean();
echo "document.write(\"<div class=\"txt\">Pagerank: $rank->pagerank <br>\")";... |