0
votes
0answers
6 views
internationalization of php website
Hi,
I am currently working on a project / website and I will need to make it available in several languages. The site was done with PHP / mysql and a lot of javascript (jQuery). I have no idea where …
0
votes
3answers
10 views
preg_match all words start with an @?
Hello Guys,
i'm not very firm with regular Expressions, so i have to ask you:
How to find out with PHP if a string contains a word starting with @ ??
e.g. i have a string like "This is for …
0
votes
0answers
6 views
Create a modular website, allowing the user to select their page layout. PHP and jQuery advice?
Hello,
I am looking to build a website that allows to user to fully customise the content thay they see, I will be building this using CodeIgniter of Zend Framework and also jQuery, what I need to …
0
votes
4answers
30 views
Speedup a php web site
What's the best way (ways?) to speed up a php web site and how much faster it can using this or that way?
0
votes
3answers
22 views
Find and edit text files via PHP
Hello,
Let say a text file contain
Hello everyone, My name is Alice, i stay in Canada.
How do i use php to find "Alice" and replace it with "John".
$filename = "C:\intro.txt";
$fp = …
0
votes
2answers
59 views
php validate user is over 18
Just wondering, can I do this to validate that a user has entered a date over 18?
//Validate for users over 18 only
function time($then, $min)
{
$then = strtotime('March 23, 1988');
//The age to be …
0
votes
1answer
15 views
ImageCreateFromJPEG PHP Another image
How do you add another image to a image in php the itme i want to add is images/rank1.jpg?
$rImg = ImageCreateFromJPEG("images/card/test.jpg");
$cor = imagecolorallocate($rImg, 255, 255, 255);
…
1
vote
5answers
49 views
HTML to PDF vs. Programmatically creating PDF via PHP
I have a PHP application that needs to generate some PDF invoices and PDF timesheets with nice headers/footers. Some Stackoverflow users recommend using TCPDF to create the PDF documents. In my …
1
vote
1answer
42 views
In a PHP project, how do you organize and access your helper objects?
How do you organize and manage your helper objects like the database engine, user notification, error handling and so on in a PHP based, object oriented project?
Say I have a large PHP CMS.
The CMS …
0
votes
0answers
25 views
PHP and scheduled tasks
I'm trying to come up with a list of different approaches to run scheduled tasks on PHP. My intention is to provide an universal way to run scheduled tasks in PHP. So far I have:
1) Analyze site …
0
votes
1answer
15 views
removing items from a dojo datagrid
Hi,
I am struggling with a simple dojo datagrid in my Zend Framework project.
I have a list of data from a mysql table that I can display, however I want users to be able to remove selected rows …
1
vote
5answers
53 views
Regular Expression In PHP
Hi
i would like to parse following string to get the value "46.4400 INR"
<div id=currency_converter_result>1 USD = <span class=bld>46.4400 INR</span>
<input type=submit …
0
votes
1answer
18 views
How to overwrite array elements inside cookie if ‘nr of elements > x’ ?
I have a classifieds website, and when users click on an ad, an array element containing the ad id is set to a cookie.
Then on the main page, the 'last visited ads' is shown.
Problem is, I have a …
1
vote
2answers
39 views
PHP - multiple users edit the same image simultaniously.
I am looking to have multiple users edit the same image using the gd library's imagecopymerge function.
I am worried that two users might select to edit the image at the same time. The application …
0
votes
4answers
30 views
php anchor tag regex
Hi,
I have a bunch of strings, each containing an anchor tag and url.
string ex.
here is a link <a href="http://www.google.com">http://www.google.com</a>. enjoy!
i want to parse out …
