Hello All. How are you doing?
Right now I have this. I would like to Concatenate these using PHP to show the date.
In VBA it will look like this.
Event Date = event_month & "/" & event_...
I want to remove all (multiple) non-alpha characters in $string, except that I want to replace all occurences of '*' with a '%'
For example '1234-56.*.90*' would be changed to '123456%90%'
...
I am looking for php code that will enable me to hide/show a text box based on the users previous drop down list response.
(1) I want the "additional" text box to ONLY display if the use...
In the index.php page when i click on the products listing, it goes to home.php and ask you to login.
This is home.php page:
<?php
session_start();
ob_start();
$surveyid = $_GET['sid'...
Windows 2000 Server
IIS
PHP
My error:
Warning: mail(): SMTP server response: 503 5.5.2 Need Rcpt command
Line 500 :
return mail($to_addr, $subject, $this->output, 'From: ' . $from ....
I am trying to import a csv file into phpMyAdmin, but it doesn't seem to work. I'm not sure if I am just doing it incorrectly or what, but whever I try it I get the following error:
Invali...
I want that user will not be able to copy and paste the email address from email text box to email confirmation textbox in php.
How it can be done?
Hello.
I have some question about Active Directory and ldap authorization in PHP.
When I'm using this script (pleas look below) everything is working and users can authenticate.
Now I'm ...
I have a content management page written in PHP with data from mySQL. My customer edits inventory on this page. They upload pictures, pricing information, etc. One of the fields they are al...
Hello
In my php file
----------------------------
// company 1
<form method=post action="doform.php" onSubmit = varify (?,? )
<input type="checkbox" name="companyName[]" value='$comp...
Hi y'all,
I need to pass an argument in an include statement.
Here's what I want to do:
$header_row = include 'headerrow.php?bowtie=bowtie_contacts.jpg';
=============
headerrow.php...
I have a web page written in PHP with a form that has a list box in it, where the user can select multiple choices. My question is how do I get all of the options that the user selected throug...
I have a string like "3/15/2006"
I need to find the number of days from that date until now using php.
Hello
i'm using this simple php file (rssF.php) to invoke the Get method in the following code:
---------------------------------------------------------------
<?php
var $rss_url="http://f...
Hi,
Im using this:
$allowed = "b|i|u|a";
$str = preg_replace ( "/<((?!\/?($allowed)\b)[^>]*>)/xis", "", $str );
$str = preg_replace ( "/<($allowed).*?>/i", "<\\1>", $str );
Howev...
Hi,
want to remove the last 5 characters from a string called $sql, can somebody show me please?
I tried using INPUT type=hidden as a text area but my resume field keeps showing up...
Any suggestions or fixes?
Dear experts,
I have a problem here. I have search experts-exchange site for some time, but i failed to
find a proper solution.
I am setting up a web site (written in PHP) that will allo...
Hi ...
I am trying to perform the following function.
When a user comes to the site, I want to check to ensure they are using the HTTPS socket. If they are not, they are redirected to...
I have a list of images that when clicked must change the language of the current displayed page.
All the PHP code is written except the one who call my SetLanguage() function. I plan to pu...
Hello all,
I have an HTML form which I'm processing with PHP, and I'm checking if the form has been submitted using if(isset($_POST['submit'])), and if the form has not been submitted i thr...
I want to attach background image to my mail. I am using phpmailer classes to send the mails. I can send mails with headers + image attachment ... but not the image background attached mail ....
Hello,
I need some help with a script, I've managed to do what I need using GD library but it's been producing results I'm not happy with, and have had ImageMagick recommended to me as an ...
Is there any PHP function being able to replace all the vowels with accents with simple vowels??
I mean a funcion being able to replace áéíóú with aeiou, àèìòù with aeiou... etc.
Hi,
I am developing a CMS for my friend and he needs to be able to upload videos. I have found a simple script (smashscripts.blogspot.com/2007/05/php-upload-and-convert-avi-wmv-mov-and.htm...