39,402 Topics

Member Avatar for
Member Avatar for gary89

Hi Guys, Its my first post here, and hoping to find some help.. I have installed a spiderPoll v1.1 system on my server, the problem is I cant seem to be able to vote.. It displays everything correctly but when I try and vote it will not recognise my vote.. …

Member Avatar for gary89
0
211
Member Avatar for daneuchar

[code=php]<?php # Script 16.7 - activate.php // This page activates the user's account. require_once ('includes/config.inc.php'); $page_title = 'Activate Your Account'; include ('includes/header.html'); // Validate $_GET['x'] and $_GET['y']: $x = $y = FALSE; if (isset($_GET['x']) && preg_match ('/^[\w.-]+@[\w.-]+\.[A-Za-z]{2,6}$/', $_GET['x']) ) { $x = $_GET['x']; } if (isset($_GET['y']) && (strlen($_GET['y']) == 32 …

Member Avatar for almostbob
0
95
Member Avatar for abrocketman

Hi I have used this file numerous time and it always worked, and I out of the blue I get this error now i have checked the script but i cant seem to find anything wrong. [CODE] <? function upload_image($img, $ext, $id) { $uploadpath = $_SERVER["DOCUMENT_ROOT"].'/css/news-images/'; if ( ($img != …

Member Avatar for kireol
0
46
Member Avatar for tatt727

Hi, I am trying to workout how I can changed the buttons I have for sorting the fields in the table into hyperlinks. I have worked out how to do one, but what about if there are several forms on the same page? Thanks [CODE]<?php //Connect to server $conn = …

Member Avatar for almostbob
0
115
Member Avatar for abhishektiwari

I have a application where which uses asp.net and php both.So i need a web hosting where i can run both into one.Can anyone suggest me the name of the hosting company where i can run that application. Thanks in advance!!

Member Avatar for ShemoPT
0
112
Member Avatar for proprasee

i have 10 buttons by default colour is red. for each click its colour changes to blue then red that was implemented. The problem is i ahave an array of 10 elements.initially value 0. when button changes to blue corresponding value changed to 1 for red -0 how can i …

Member Avatar for dasatti
0
213
Member Avatar for new_divine

how to resize and make the thumbnail view of the photos like in facebook or other sites without distorting the photos

Member Avatar for muralibobby2015
0
96
Member Avatar for jeet_portal

Hi... I have a small doubt about php print statment. pls let me know if there is any reason Here is a doubt for me. [CODE] <?php $a=08; print $a; ?> [/CODE] why its output is 0.

Member Avatar for jeet_portal
1
109
Member Avatar for R3Slick

like in my previous posts, I have a search.php file and a searchResults.php file. There is a drop down menu on the search.php file and it has various methods to search a table in my DB like EmployeeID, EmpName, Team, Department, and Manager. i got all the rest working; however, …

Member Avatar for R3Slick
0
108
Member Avatar for mpierre

Hello Every one, im in a need for some help i have the following issue : ---[B] Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in D:\Hosting\00000\html\index.php on line 10[/B] this is what the code looks like Can some one please assist me on what is wrong …

Member Avatar for venkat0904
0
93
Member Avatar for arushibafna

hey, while working on my project, i encountered a problem .here's the description- a teacher is required to insert marks of 15 students.( 15 is just the random no. , it can vary) . so a page is displayed with the roll no. and names with a text box in …

Member Avatar for venkat0904
0
182
Member Avatar for veledrom

Hi, Is there any chance of resizing gif, tif, bmp, jpg, png I know that we can jpg files. Thanks

Member Avatar for venkat0904
0
93
Member Avatar for futhonguy

Hi, I had developed a viewing table from mysql database using php and it is showing me the whole list of contents in a single webpage. I would like to know if there anyway i can actually split the contents into multiple pages for easy viewing?? Your help is greatly …

Member Avatar for futhonguy
0
2K
Member Avatar for kjelle392

Hello friends! I'm just beginning with JavaScript (and Ajax). My loginscript now works with Ajax - that is; the script is sending a request to the servers PHP script to check username and password, but I wonder what that script should return - and how to use that response. Either …

Member Avatar for ryan_vietnow
0
360
Member Avatar for lifeworks

hi im not sure if this is a php issue, or a doctype thing - im using the 'strict' doctype... all of the apostrophes (') in my text are being swopped out for black diamonds with a question mark in them...? Huh?

Member Avatar for Airshow
0
97
Member Avatar for Webbg

I can't get my select query correct. I have 4 tables and 2 foreign keys. Here are my table structures. [iCODE] movies movieid int unsigned not null auto_increment primary key moviename varchar directid int unsigned # foreign key to directors table date adddate genres genreid int unsigned not null auto_increment …

Member Avatar for diafol
0
62
Member Avatar for dmkc

Hi guys, Ok, so I'm using the code below to display the fields from a table on my webpage. I used some code to paginate the results as there's a lot of records, however I can't seem to get it working properly, and I'm going crazy trying to work out …

Member Avatar for kireol
0
118
Member Avatar for bimaljr

Hello I am creating a big website and some of php file will be bigger than 1MB So, I want to know what is max file size of .PHP file to execute or include. Thanks

Member Avatar for samarudge
0
77
Member Avatar for valonesal

Ok so I have a bit of code. [CODE]echo "<span class='sortstyle'><strong>Average rating:</strong> "; while($row = mysql_fetch_array($result)) { $rating1 += $row[rating1]; } $avgrating = round($rating1/$numberofrows, 2); echo $avgrating." / 5</span><span class='sortstyle'><strong>Total reviews:</strong> ".$numberofrows."</span>"; }[/CODE] I want this to display the values from my database but from different rows so I tried. …

Member Avatar for kireol
0
77
Member Avatar for momo219

So... I have a 2 Table (mysql) Db. Table 1 = (sub)Menu, Table 2 = Images per (sub)Menu. Typical scenario - new.php - loads a form with a MENU ADD form, and a List of current Menus (with Edit and Delete). Edit loads Edit.php, with MENU Edit form (id got …

Member Avatar for momo219
1
1K
Member Avatar for K0ns3rv

Hello daniweb. I am currently involved in a project were we need to be able to generate confirmation mails, our original thought was to code an html mail, but we quickly deserted that idea. Therefor I need a powerful yet simple PDF class for PHP. I have no greater interest …

Member Avatar for venkat0904
0
91
Member Avatar for sammoray

this problem is too old with me please try to help I made online users table in db and when user is logging in . the code is [COLOR="Red"]$sql="insert into online_users(username) values('".$_SEESION['username']."')"; mysql_query($sql);[/COLOR] but I couldn't specify the users who went offline to delete them from the table please help …

Member Avatar for phpuser
0
85
Member Avatar for ampLife

please help me with this:), what i wanted to do is to retrieved all the values in table per row. how do i do this? in checkboxes.please help. heres my code: [CODE] echo "<td><input type='checkbox' name='enrolldis[][][]' value=''></td>"; echo "<td>$secname</td><td>$subjcode</td><td>$subjname</td><td>$schoolyear</td><td>$room</td><td>$days</td><td>$sectime</td><td>$slotavailable</td><td>$unitload</td>";echo "</tr>"; [/CODE] how do i put values in arrays of checkboxes? …

Member Avatar for diafol
0
98
Member Avatar for vishalonne

hi every body I have written a code for deletion of records from database. my navigation path is like this 1. [COLOR="Green"]member.php [/COLOR](for selecting the delete option from menu) 2. [COLOR="green"]deleteadministrator.php [/COLOR]( for entering id of customer and search for the record if reord found then to click on delete …

Member Avatar for vishalonne
0
134
Member Avatar for vishalonne

Dear Php Experts I created few php file : [COLOR="Green"]Login Page - loginform.php[/COLOR] this page takes user id and password and fetch department from database then it post them to : [COLOR="green"]Checking File - userchek.php [/COLOR] where session is created if id password and every think goes fine other wise …

Member Avatar for vishalonne
0
7K
Member Avatar for BzzBee

I have a contact information form where users come and fill their info. There are different fields on form like name, email, phone no. ect. i don't want to let user to enter that detail again and again. i want to set cookies so when he/she will open that form …

Member Avatar for venkat0904
0
636
Member Avatar for mudunuru

How to use Ajax for thumbnails navigation.The thumbnails have been genereted by PHP.

0
80
Member Avatar for jcanaway

Hello Every on i have wrote some scripts for my website and i am getting Undefined variable Notices on a couple Variables like exampled below [CODE] $i = 0; foreach($value as $row) { $content .= "<option value=\"".$i."\" ".$selected.">".$row."</option>\n"; $i++; } [/CODE] now every time i view the page with the …

Member Avatar for ko ko
0
225
Member Avatar for mr_scooby

Can ignore other post not sure why i closed it, not solved lol, not enough coffee too much looking at php anyway. I have this form I'm working on and found something interesting attempt1 this way works exactly how I want, which is nothing in the input boxes and no …

Member Avatar for cwarn23
0
191
Member Avatar for shishtawitch

if i have following link [CODE]<a href="#Next/?s=5">Next Value</a>[/CODE] If i click on Next Value the address bar url will be [CODE]http://www.domain.com/#Next/?s=5[/CODE] then how can i get the value of s

Member Avatar for FlashCreations
0
152
Member Avatar for freshfitz

I have a simple gallery script in flash that has a php admin. The login works in firefox but no IE it redirects you right back to the login page can anyone figure this out it's 3 files index.php admin.php config.php the index.php redirects you to admin.php. index.php [CODE]<? $login=$_POST['login']; …

Member Avatar for diafol
0
153
Member Avatar for smartspriggs

I have a .phpfile in the xamp/php/www folder but can't get it to work with lofalhost.

Member Avatar for diafol
-1
95
Member Avatar for newbie37

I am stuck. I have a beginning php class and have run into a wall. Any help will be appreciated. here is the from that is submitted for paycheck calculation: <!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> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Untitled Document</title> </head> <body> …

Member Avatar for FlashCreations
0
487
Member Avatar for foxwizzy

is it posible to increase a mysql table default value to increase by a number based on another number E.X. i have a default value set to 10 how do i increase it by 1 every 3 minult also if i add a new number "3"(in a box or text …

Member Avatar for diafol
0
98
Member Avatar for shishtawitch

how can i create a php page where the page is gone refreshed automaticly without reloading page and user could see other users activity just like facebook.................!!

Member Avatar for jcanaway
0
59
Member Avatar for sam023

i have a data in mysql in this format.. 1,2,3,4,5,6... can i split and show this data in this format in mysql?? 1 2 3 4 5 6 thanks ijn advance

Member Avatar for diafol
0
234
Member Avatar for Cy137

[CODE]<?php //Distance Function function distance($findId, $userToSearch, $userids, &$nodes){ $searchquery="SELECT '($findId)' FROM 'users' WHERE userid='($userToSearch)'"; $queryResult=mysql_query($searchquery); while($blah=mysql_fetch_assoc($queryResult)) { $result=$blah["$findId"]; } if($result == '1'){ return 1; } else{ $userToSearch=array_pop($userids); if($userToSearch!=NULL){ $count=(distance($findId,$userToSearch, $userids, &$nodes)+1); } return $count; } echo "Search Failed. <br>"; return 0; } $SQL2 = "SELECT userid FROM `users`"; $query2=mysql_query($SQL2); while($userid_temp=mysql_fetch_assoc($query2)) …

0
66
Member Avatar for ryy705

Hello, What permissions should PHP files have on a unix/linux system? Is 655 appropriate? Many thanks in advance.

Member Avatar for diafol
0
84
Member Avatar for unixmonkey

Hi Guys, This isn't really the right place to post this, but there doesn't seem to be a right place, so here it goes! I'm running a bunch of subversion repositories (one repository per project) over http (using apache). One of the repositories is a shared_classes repository that stores shared …

Member Avatar for unixmonkey
0
105
Member Avatar for indoreankita

i want to give an option like 'Import' where on clicking on this word , a window should open from where i can choose file and and then can use that file on my page. i can do this by giving an input text box with type file but i …

0
51
Member Avatar for sam1

hi, Is there a way to include a php file in .tpl file. basically i have a menu (javascript,html and css based) that i want to include in the .tpl file. thanks

Member Avatar for pritaeas
0
150
Member Avatar for Borderline

I am new to arrays, and was thinking they could help me in my racing project. I have two pages, one displaying the data, and the other, currently used as a php include, that contains the array. I can get the more simple elements of the array working, but I …

Member Avatar for Borderline
0
96
Member Avatar for mr_scooby

I have this form I'm working on and found something interesting attempt1 this way works exactly how I want, which is nothing in the input boxes and no error messages on loading the registration form, once submit is entered the empty fields have a message appear next to them, the …

Member Avatar for muralibobby2015
0
199
Member Avatar for motieno

I have followed the online tutorials for setting up your first php project using netbeans ide 6.5 mi. my project - NewPHPProject tree appears in the Projects window but i cant see the project's index.php file. What could be wrong? NewPHPProject tree | source Files | NewPHPProject tree That is …

Member Avatar for Stefano Mtangoo
0
126
Member Avatar for Mahesh_J
Member Avatar for sam023

when i wrote localhost/site/images/ i can see all images of my site... how can i stop it...!! i tried .htaccess with code "deny to all" but it does not show images when i run the site on browser..!! What should i do.?

Member Avatar for sam023
0
93
Member Avatar for R3Slick

I got a search.php file and a search_results.php file like in my previous thread...the user can select from a dropDown menu what they want to search EmployeeID/EmployeeName/Manager/Department/Team then a text box where they can type in the ID, full name (with spaces) ,Department..ect I got the search for ID, Department, …

Member Avatar for R3Slick
0
147
Member Avatar for Leandro-AL

Hello! I am trying to create some sort of a crawler. I was using file_get_contents() to get the pages until i stumbled on this one site, where that didn't work: [CODE=php]$page = 'http://www.site.com/page.php'; $content = file_get_contents($page); echo htmlspecialchars($content);[/CODE] This returned a completely blank page. After looking it up, it appears …

Member Avatar for kireol
0
2K
Member Avatar for aruti

what problem i am actually facing is that .. i have a database -- table in which i have lng and lat saved .. And i want that when i fetch them in textual form i also get the address to which those particular set of lng and lat are …

Member Avatar for chrishea
0
78
Member Avatar for kira4

May I know why I cannot submit my search function by pressing enter? When I enter the primary key and press enter, it will show this : Notice: Undefined index: submit in c:\easyphp1-8\www\efiling\accountingdeleteprocess.php on line 23 But if I enter the primary key and press the submit button, there is …

Member Avatar for kira4
0
75

The End.