39,320 Topics

Member Avatar for
Member Avatar for poolean

Im sorry to bother all of you but im a complete retard when it comes to scripting etc. More to the point: I downloaded a completed script but im getting error Notice: Undefined index: input_name in \index.php on line 17 and Notice: Undefined index: input_text in \index.php on line 18 …

Member Avatar for poolean
0
206
Member Avatar for bLuEmEzzy

Help me please I have a table with 9 columns After Column5, I want to have two rows in row1 = (Qualification) in row2, there are for columns(Ed, Tr, Ex, El) Thank You. <td rowspan="2"><b>Col5<b></td> <tr><td colspan="4"><b>Qualification</b></td></tr> <td><b>Ed</b></td> <td><b>Tr</b></td> <td><b>Ex</b></td> <td><b>El</b></td>

Member Avatar for bLuEmEzzy
0
489
Member Avatar for dante123

Hi i have a menu in an include php file: <div id="menu" > <?php // include functions include_once('includes/functions.php'); // array to hold top menu $top_menu_items = array( 'index.php' => array('text' => 'Home'), 'about.php' => array('text' => 'About'), 'contact.php' => array('text' => 'Contact') ); // call the function that draws the …

Member Avatar for diafol
0
148
Member Avatar for Raakesh399
Member Avatar for Raakesh399
0
130
Member Avatar for Djmann1013

I am having trouble with this code: This is the init.inc.php file <?php //init.inc.php file session_start(); $exceptions = array('signup', 'login', 'index'); $page = substr(end(explode( '/', $_SERVER['SCRIPT_NAME'])), 0, -4); // SQL stuff. mysql_connect('SQL host','username','password'); mysql_select_db('database name'); include('user.inc.php'); //$_SESSION['uid'] = 1; if (isset($_COOKIE['username'], $_COOKIE['password'])){ if (valid_credentials($_COOKIE['username'], $_COOKIE['password'])){ $_SESSION['username'] = htmlentities($_COOKIE['username']); setcookie('username', $_COOKIE['username'], …

Member Avatar for Djmann1013
0
316
Member Avatar for dante123

Hi how can i tell the submenu to behave as the main menu this is the code for the main menu: if($script == $url) { // if the item in the array is the current page, highlight it $menu .= '<li><a style="color:#eb0089" href="#nogo"> '. $text . ' </a></li>'; } else …

Member Avatar for dante123
0
100
Member Avatar for raj-uk

Please advice, how to writing code in php , only echo letter that between [ ] , like we are going to [uk] echo uk

Member Avatar for diafol
0
64
Member Avatar for anjalis683

How we can start session <?php session_start(); $user_check=$_SESSION['login_user']; if(!isset($user_check)) { header("Location: login.php"); } ?>

Member Avatar for raj-uk
0
70
Member Avatar for philjon-aris

Im a newbie in PHP and I want to create a simple webpage app for my website, I was able to produce this page base on a tutorial here. <?php $con = mysql_connect("localhost","*****","*****"); if (!$con) { die('Could not connect: ' . mysql_error()); } mysql_select_db("*****", $con); $result = mysql_query("SELECT * FROM …

Member Avatar for philjon-aris
0
897
Member Avatar for PF2G

Hi, I have this code that selects the value of a combobox and it inserts into a input: <?php echo '<input id="matr_input" style="margin-left:15px;margin-top:10px;" name="id_cat"></input>'; $select_images="SELECT * FROM categories WHERE id_category='"./*combobox value*/."'"; $query_images=mysql_query($select_images) or die(mysql_error()); $image=mysql_fetch_assoc($query_images); ?> <?php $nome_arquivo = $image['img_category']; $arquivo = explode('images/', $nome_arquivo); if($image['img_category']!=''){ echo '<div style="margin-left:15px;">'.$arquivo[1].'<a href="delete_category.php?id='.$image['id_category'].'"><img width="10" …

Member Avatar for diafol
0
97
Member Avatar for escalanterj

Hello everybody, I have a login page which uses sessions to go to different pages and still allow the user to login when he returs to the initial logi.php page, but now I have implemented the different languages and I realize that whenever I hange the language (which is also …

Member Avatar for escalanterj
0
536
Member Avatar for devianleong

Please help me..I've the following code and I entered an account number in bank account number field but in database was changing the value. what's wrong? My input in bank account number field is :112046067391 but the output is :2147483647 In database I set it to int(20) but still the …

Member Avatar for iamthwee
0
143
Member Avatar for rakibtg

My PHP script can fetch content from a div id, but what is the way to filter this fetch data and exclude some of its content which has this div id `<div id="navbar" class="n">content here content here</div>` I have tried with this code but its not working $regex = '#\<div …

Member Avatar for rakibtg
0
873
Member Avatar for Navlag

I'm new to PHP and was given a code snippet that looks like this: { $DB = new DB('xxxxxx','oooooo','gggggg'); $return_result = false; $this->clear_data(); $m = new xmlrpcmsg( 'ldapxml.authorize' , array( new xmlrpcval($user_name, "string") , new xmlrpcval($password, "string") ) ); // this is just a temp server for now $c = …

Member Avatar for Squidge
0
184
Member Avatar for Jakx

Hello, I am having trouble with this custom admin panel. It is pretty simple, it has an admin login page, an index page , and a page where you can Add and Delete invetory items ( <--this one is the one with the problem ) Everything was working okey, I …

Member Avatar for simplypixie
0
279
Member Avatar for matrixracetips

hey guys, im trying to change a menu items color, if a user was on the members section, the member menu icon would be a different colour to the other menu items etc. initially the menu item <li> has no css class assigned to it, but once they visit a …

Member Avatar for matrixracetips
0
226
Member Avatar for nzz20v

Hi, i am trying to store some values into a database, but upon trying to add i am getting a "Column count doesn't match value count at row 1" i believe i am passing something incorrectly but was hoping someone could point me in the right direction i have included …

Member Avatar for nzz20v
0
464
Member Avatar for anita.kcx

Hi, I wanted to create an online coding competion. Does anyone no how to go about it? I also want to apply time limits to the coding challenges. There are some existing tools but I need to create a some new features. Can anyone tell me how to start? Thanks

Member Avatar for urtrivedi
0
70
Member Avatar for nesa24casa

Hello, how to get all data in .php file Example i have webwebweb.com/work.php?worker=1&shop=52 How can i get **strings in worker to string [] worker strings in shop to string [] shop?** Thanks in advance

Member Avatar for nesa24casa
0
188
Member Avatar for rubai

Hi, I have some basic php knowledge. I want to know about ' -> ' sign. What does this arrow means? I know it is very sipmle question but don't know. I am learning php from my own effort. Jahur

Member Avatar for rubai
0
199
Member Avatar for chandbasha
Member Avatar for vlowe

Hi, Please help me work out this mod-rewrite issue while trying to make my urls SEF. RewriteEngine On Options +FollowSymLinks # Browse Category RewriteRule ^category/[!/.]*([A-Za-z]+)/?$ /browse.php?cat=$1 [NC,L] # View Item RewriteRule ^view/([0-9]+)/([a-zA-Z0-9-]+)$ /view.php?item_id=$1&sef=$2 [NC] This is my current .htacess. The browse category rule is working ok converting - http://localhost/browse.php?cat=people into …

Member Avatar for vlowe
0
228
Member Avatar for abiec

Hello, i would like to know what happens at the backend(access to remote database), when someone clicks check availability on a, say an online travels, hotels, flights booking page, and he gets informations like if the rooms or flights are available on so and so dates and things. I would …

Member Avatar for abiec
0
117
Member Avatar for dlmagers

Ok, here is my code below. I am just learning this language and I need help with a question for a error message if statement. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Product Discount Calculator</title> <link rel="stylesheet" type="text/css" href="main.css" /> </head> <body> <div id="content"> <h1>Product Discount …

Member Avatar for Javvy
0
173
Member Avatar for geneh23

Hey everyone, I know this probably seems simple but for some reason I can't get my head around the correct concept. Bare with me please. I have a form in html that is for uploading photos in a to a specific category. However I want to add a select menu …

Member Avatar for geneh23
0
362
Member Avatar for onofej

i have a registration form where members fill in datas, clicking on submit button i got this Warning: extract() expects parameter 1 to be array, null given in C:\Users\0382\xampp\htdocs\cidia\source\New_member.php on line 22 Notice: Undefined variable: firstName in C:\Users\0382\xampp\htdocs\cidia\source\New_member.php on line 27 Notice: Undefined variable: lastName in C:\Users\0382\xampp\htdocs\cidia\source\New_member.php on line 27 …

Member Avatar for klemme
0
193
Member Avatar for mahdiyazdani

hi everybody i got this page form some template that shows items in the page with pagination system but i want to keep this method without any pagination i dont want to spilit number of items i just wanna see all of the items that it read from db in …

Member Avatar for mahdiyazdani
0
123
Member Avatar for dante123

This is my "left menu" it appears as an include in all the pages: <?php // array of pages for the left menu $left_menu_items = array( 'book.php' => 'Book Design', 'identityDesign.php' => 'Identity Design', 'logos.php' => 'Logos', 'packaging.php' => 'Packaging', 'index.php' => 'Selected Projects', ); // start the html string …

Member Avatar for dante123
0
256
Member Avatar for rajphp
Member Avatar for jajarvin
0
93
Member Avatar for Squidge

Hi all, I am in need of assistance. I am trying to configure PEAR with XAMPP 1.8.0 on Win 7 64Bit. I download the go-pear.phar (http://pear.php.net/manual/en/installation.getting.php) and ran the instructions. Updated my env path. All looked ok. Tried to run `pear help` and i get nothing, no error, not a …

Member Avatar for Squidge
0
380

The End.