Hi,
I'm having problems with regular expressions that I got from regexlib. I am trying to do a preg_replace() on a some text and want to replace/remove email addresses and URLs (http/https/ftp).
The code that I am have is:
$sanitiseRegex = array(
'email' => /'^([a-zA-Z0-9_\-\.]+)@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([a-z...
I am retrieving values from the url with the GET method and then using a if statement to determine of they are there then query them against the database to only show those items that match them, i get an unknown error with your request. here is my code
$province = $_GET['province'];
$city = $_GET['city'];
if(isset($province) && isset(...
I want to get the contents of some emails in my gmail account. I would like to use the PHP cURL extension to do this. I followed these steps in my first try:
In the PHP code, output the contents of https://www.google.com/accounts/ServiceLoginAuth.
In the browser, the user input username and password to login.
In the PHP code, save cook...
Hi all
I might be looking at this the wrong way, but I have a form that does its thing (sends emails etc etc) but I also put in some code to make a simple flatfile csv log with some of the user entered details.
If a user accidentally puts in for instance 'himynameis","bob' this would either break the csv row (because the quotes weren't...
I have a php code that works well in PHP 5.2 but throwing "Parse error: syntax error, unexpected '}'" after upgrading to PHP 5.3.
When I use echo/print or heredocs to print all the HTML part of the code, the error is gone.
My question is, why this error occurred? Is this mean that in PHP 5.3 we are no longer allowed to put HTML code in...
Is there anyway possible to create a way for tomcat to render files out of one directory and apache to render files out of another?
I have a java based CMS (Liferay) running on my ubuntu server running with Tomcat 6 and Apache 2... but I also have several PHP applications that need to be ran as well... Is there anyway to run PHP files ...
This is driving me bonkers... I just want to add another img node.
$xml = <<<XML
<?xml version="1.0" encoding="UTF-8"?>
<gallery>
<album tnPath="tn/" lgPath="imm/" fsPath="iml/" >
<img src="004.jpg" caption="4th caption" />
<img src="005.jpg" caption="5th caption" />
<img src="006.jpg" caption="6th caption" />
</album>
...
I have a script in PHP which retrieves two very similar files and performs some tasks on the data then outputs a result. I'm currently using curl and getting one, processing it, then getting the other and processing it.
I want to switch to stream_socket_client as I've heard you can retrieve both files at the same time and do the process...
Is these a way i can loop through a PHP array and have the data outputted into a JavaScript array?
For example, the JS script below will not work
var mon_Loop = <?php echo $rowCount_Mon ?>;
var mon_Events = new Array();
for(i = 0; i < mon_Loop; i++)
{
mon_Events[i] = <?php $divMon[i] ?>
}
I Know its because the "i" is not a php...
Hi,
I have 5 textfields for user input in a form namely:
username1, username2, username3, username4 and username5
I would like to know how should I write my php code such that I will be able to check if there is any duplicates between the 5 textfields during POST?
I can only think of comparing (username1 !== username2) and so on, but...
I'm trying to create a IT asset database with a web front end.
I've gathered some data from forms using POST as well as one variable that had already written to a cookie.
This is the first time I have tried to enter the data into the database.
Here is the code:
<?php
//get data
$id = $_POST['id'];
$company = $_POST['company'];
$loca...
In PHP 5.3 is there a way to rename a function or "hook" a function.
There is the rename_function() within "APD" which has been broken since ~2004. If you try and build it on PHP 5.3 you'll get this error:
'struct _zend_compiler_globals' has no member named 'extended_info'
This is a really easy error to fix, just change this line:
...
Is there a way to find custom tags in regexp I.e. match
{a}sometext{/a}
As well as
{c=#fff}sometext{/c}
So that it finds the entire block of inner content? The problem is the sometext could have another tag as in:
{a=http://www.google.com}{b}Hello, world{/b}{/a}
The only solutions I can come up with would match from ...
I want to create stored procedures through phpmyadmin and later on use it on php. But I dont know how to?. From what I know, I found out that, we cannot manage stored procedures through phpmyadmin. What other tool can manage stored procedure?
And I am not sure if it is better option to use stored procedure instead?
...
Hi,
I'm implementing PayPal IPN & PDT. After some headache & time at the sandbox, IPN is working well and PDT returns the correct $_GET data. The implementation is as follows:
Pass user ID in form to PayPal
User buys product and triggers IPN which updates database for given user ID
PDT returns transaction ID when user returns to site
...
THE SUMMARY:
When I call .../index.php/product, I receive:
Fatal error: Call to a member function
get_prod_single() on a non-object in
/var/www/sparts/main/controllers/product.php
on line 16
The offending Line 16 is:
$data['pn_oem'] = $this->product_model->get_prod_single($product_id);
Looks like I don't know how to make ...
HI
I'm using exec in php to execute a command and it will create a .png file in a temp folder..
After creating that i'm trying to open that file and read contents and process them,,
but i end up file could not read error..
I think the time taken by the exec to execute and create a file is the cause for the issue..
but i dont know ho...
$a[]="Anna";
$a[]="Brittany";
$a[]="Cinderella";
$a[]="Diana";
$a[]="Eva";
$a[]="Fiona";
$a[]="Gunda";
When declaring it this way, does it automatically increase the index? Why is this ideal?
...
Hi,
I am developing a php website.
I cant see php.ini file in my server. my host will not provide it.
So i'm now going to create a copy of that php.ini file.
so i have tried system()
i searched in google and i got this link.
http://drupal.org/node/290592
Here they are using like this
system("cp /usr/local/php5/lib/php.ini /home/YO...
I'm working on a website that will allow users to upload and sell their artwork in different sizes. I was wondering what the best way would be to handle the different file sizes automatically. A few points I was curious on:
How to define different size categories (small, medium, large) in such a way that I'll be able to dynamically r...