Forum: Site Layout and Usability Apr 18th, 2009 |
| Replies: 3 Views: 868 The same marketing text found at:
http://www.tekla.com/international/solutions/building-construction/construction-companies/site-management/Pages/Default.aspx
This is a construction company.... |
Forum: PHP Apr 14th, 2009 |
| Replies: 4 Views: 645 I'm looking at your code, the method used in your form and mysql variables is ok, but into the form code, the survey code is commented into <!-- ... --> tags, remove it.
Add value="<?php echo... |
Forum: PHP Nov 10th, 2008 |
| Replies: 5 Views: 1,980 Facebook and another community sites achieves this optimal capacities performing an image scale reduction and using lossless formats like JPEG for every photo uploaded. Data storage can be a concern... |
Forum: PHP Jul 23rd, 2008 |
| Replies: 4 Views: 1,080 To generate a PDF into PHP, there are two techniques: PDFLib or FPDF. PDFLib has some restrictions on licencing (commercial applications), I encourage to use FPDF because is free and Open Source,... |
Forum: PHP Sep 10th, 2007 |
| Replies: 7 Views: 2,167 It is possible to use fopen() in PHP5 to send a POST request and obtain the content in a variable, check this tutorial:
http://netevil.org/blog/2006/nov/http-post-from-php-without-curl
According... |
Forum: HTML and CSS Aug 24th, 2007 |
| Replies: 4 Views: 1,938 yes, it's true, but you can use a condition like this to deal with compatibility issues:
<? if (isset($_SERVER['HTTP_USER_AGENT']) && (strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') == true)) {... |