39,316 Topics

Member Avatar for
Member Avatar for phpbeginners

I am very new in website developing. Anybody help me how to make this dropdown listing in Internet Explorer Browser the same listing in Firefox. I want the word extended in the size of the dropdown button. see attached images. Thank you.

Member Avatar for phpbeginners
0
92
Member Avatar for whiteyoh

Hi all, I have a 4 column table. Say the count of records in each column is 5, 50, 100, 200. the column with 5 entries, has those entries not appearing at the top of its data area. eg cars houses flights a b c d a e b a …

Member Avatar for JRM
0
61
Member Avatar for zodiacfive

some of my session values are missing. Can anybody please tell what all reasons can be there?? on submitting the form its assigning to variable and its alerting using jquery. But after going any page session values are missing. Do any body had these type of issues. Am sure, many …

Member Avatar for emhmk1
0
53
Member Avatar for whiteyoh

Hi all, Im in the sandbox area of paypal and sending a test ipn, which is stated as successful. I miss spelt the name on purpose and got an error, so im guessing that it only checks for a file actually being there. I admittedly got this code from their …

Member Avatar for blocblue
0
55
Member Avatar for dottomm

Hello and thank you for taking the time to read my question. I am currently moving a static html site into a faux CMS and have a question about which direction is best recommended. I have series of 'News Articles' that I would like to make available through a db. …

Member Avatar for dottomm
0
123
Member Avatar for motters

hi i have a contact form that i want to submit to a dater base and here is my code to do that [CODE] <?php require_once('Connections/mywigan.php'); ?> <?php if (!function_exists("GetSQLValueString")) { function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "") { $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue; $theValue = …

Member Avatar for motters
0
114
Member Avatar for manoj30dec

hi I am using following code to validate username and password please can any body check where is the mistake... [code] $adminuser = $_POST['adminuser']; $adminpass=$_POST['adminpass']; if((!$adminuser=="") or (!$adminpass=="")){ echo "Please enter Username and Password"; } elseif((!$adminuser=="admin") or (!$adminpass=="manoj")){ echo "Invalid Username and Password"; } else{ "good"; } [/code]

Member Avatar for harshbavaliya
0
114
Member Avatar for anje

i want to update my form like question form in the same area how can it works?

Member Avatar for vaultdweller123
-1
46
Member Avatar for plc
Member Avatar for frezek
Member Avatar for muralibobby2015

hello.... i want to do search box. it is exactly like google custom search. i am not talking about functionality. i am talking about look and feel. you see google search box. in that google image will appear. when we mouse in that text box that image will disapear. how …

Member Avatar for saiprem
0
121
Member Avatar for Vai

Ok, I am stuck. I have the following code to log in. I don't think it is 100% secure, but I am having an issue writing a script that will email a link for a user to reset their password. Any help would be appreciated... [code] <?php session_start(); if(isset($_GET['reg'])) { …

Member Avatar for saiprem
0
83
Member Avatar for whiteyoh

Hi All, This follow script does exactly what it says on the tin, except 1 thing, the "show next 10 results" wont show the next ten. any ideas anybody? [code] <?php // Get the search variable from URL $var = $_GET['q'] ; $trimmed = trim($var); //trim whitespace from the stored …

Member Avatar for whiteyoh
0
117
Member Avatar for kuteinheart

Hi ppl, I have a form with a drop down box and a calendar picker. I want to check if both these fields have been filled to proceed to the next page. [CODE]echo "<select name=Project value =' '>ProjectName</option>"; echo "<option>Select Project</option>"; while ($row=mysql_fetch_array($result)) { echo "<OPTION VALUE=$row[Project_Id]>$row[ProjectName]</option>"; } echo"</select>"; ?></td> …

Member Avatar for kuteinheart
0
102
Member Avatar for JuliaNell

Hi guys, I actually want to know how i can insert and delete rows on submit and delete buttons with PHP?

Member Avatar for cwarn23
0
51
Member Avatar for anje
Member Avatar for nav33n
0
36
Member Avatar for justted

Hello everyone, I am trying to istall this script which has no install instructions. However, in the Config document it hs the following line whichit says to edit [code] $items_path = "/var/www/vhosts/cyberpetcity.com/httpdocs/images"; //EDIT $Z = ""; [/code] I thought it may have been the full URL that I was supose …

Member Avatar for mblizman
0
127
Member Avatar for sutt0n

Okay, so you know whenever you send an e-mail from your website to either test something or notify you, you sometimes get that signature that says "scanned by blah blah". Like in Gmail, it says "scanned by blah blah blah". I was wondering if there was a way to remove …

Member Avatar for cwarn23
0
156
Member Avatar for s.jns

Hi, All I looking For PHP ads and Banner Manager... the module e.g. ads by category (kind of ads) by location, by popular, by newest, by paid and free banner. also support registration member, payment model support flash, movie, mp3, google maps, support for free updating ready for multiple language …

0
57
Member Avatar for drewpark88

Hey Guys, It's me again....I thought everything would work but when I tried making a donation on my donation.php form I received the following error in my process_transaction.php file: Here is the error: Parse error: syntax error, unexpected $end in \\nawinfs02\home\users\web\b885\rh.mysite\orderform\process_transaction.php on line 224 My webhost is lame and does …

Member Avatar for drewpark88
0
98
Member Avatar for Book38

I have a wordpress blog that has a drop down category menu. I need to make my parent categories bold so they are set apart from the children. I have looked on the web for days to try and find out how to do this. I found nothing that works. …

0
68
Member Avatar for harry_watson

Okay I have a textarea that edits a text div. When the user edits the text and submits, paragraphs and line breaks are passed to the div. [B]i.e[/B] (not the browser)[B]text div[/B] after submit.... [I]'WARNING - This email and any attachments may be private & confidential. If received in error, …

Member Avatar for harry_watson
0
4K
Member Avatar for afshan_naz

I'm having a problem in connecting my access database using php. The wampserver displays a message of Parse error. I have connected my access db through control pannel's option administrative tools,but no output.plz help me.... The server shows the following message: Warning: odbc_connect() [function.odbc-connect]: SQL error: [Microsoft][ODBC Microsoft Access Driver] …

Member Avatar for CFROG
0
287
Member Avatar for drewpark88

I have a quick question. How do I get only the last 4 digits of the cc_number? Will the following work? Or should I try something different.. Oh and I am emailing to myself that's why it has $message. Here's the code I think will work: [CODE] $message .= "<td>{$_GET['cc_number'] …

Member Avatar for drewpark88
0
146
Member Avatar for aditi_19

Hi, My php code runs fine when i try to insert a description with plain text. But it does not insert if i type some special characters like testing's or "testing". How can i remove this problem? Thanks

Member Avatar for pritaeas
0
69
Member Avatar for whiteyoh

Hi All, The form below is set to pass data to paypal, however I cant seem to get it to work when using variables recieved from a $_POST. I get an error from paypal stating........ "The link you have used to enter the PayPal system contains an incorrectly formatted item …

Member Avatar for whiteyoh
0
95
Member Avatar for r0gp

Hi, I have the following: [CODE] $_host = $DHOY_CONFIG['db'][$connection_name]['host']; $_name = $DHOY_CONFIG['db'][$connection_name]['name']; $_port = $DHOY_CONFIG['db'][$connection_name]['port']; $_user = $DHOY_CONFIG['db'][$connection_name]['user']; $_pass = $DHOY_CONFIG['db'][$connection_name]['pass']; $dsn = "mysql://$_user:$_pass@$_host:$_port/$_name?new_link=true"; print "dsn is $dsn"; if ($dsn != 'mysql://:@:/?new_link=true') { $db_connection[$connection_name] = DB::connect($dsn); if (!DB::isError($db_connection[$connection_name])) { return $db_connection[$connection_name]; } else { trigger_error("General system error ID: 00002 - …

Member Avatar for r0gp
0
138
Member Avatar for drewpark88

Ok so here's what I'm trying to do: 1. You press submit on my php donation form page, and when you press submit it goes to a process.php but within the IF statement I have it to where it sends my client an HTML email. 2. What I want my …

Member Avatar for saiprem
0
161
Member Avatar for cane23

i m having some trouble trying to find the sum of an queried variable however this variable is inside a loop and it is not summing it is just returning the value at that instant in time this is the code below [CODE]@$code= $_POST['coursecode_1']; if( is_array($code)) { //$sum= array(); while …

Member Avatar for cane23
0
91
Member Avatar for xuexue

hi guys, just wanna ask, is it possible to have a function using tables in html wherein if a user selects a row, the program will get the value of the entire selected row? and this value will be passed to php without reloading the page itself..thanks thanks in advance,^_^

Member Avatar for saiprem
0
97

The End.