39,320 Topics

Member Avatar for
Member Avatar for Chosen13

Help, my forums worked great until I got over 1000 posts, but then they stopped ordering correctly. Whenever someone posts a new thread it puts it on the second page now. HELP!

Member Avatar for vaultdweller123
0
94
Member Avatar for hbat66

Hello, I've wound up with a strange problem with my php script. The script goes into a SQL DB and checks the values of two different columns to see if they are equal. If the columns are not equal, then I store all of the possible values in column 1 …

Member Avatar for vaultdweller123
0
187
Member Avatar for nats01282

Hello i have been trying this now for 2 weeks and its messing with my head, i can not seem to get a WYSIWYG editor working on my site, main page [CODE] <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <title>my site</title> <meta http-equiv="content-type" content="text/html; charset=iso-8859-1" /> …

Member Avatar for pritaeas
0
301
Member Avatar for anu.reka85

PHP is good for what kind of situation... my friends telling ASP is better than PHP... so how it is helpful..

Member Avatar for diafol
-1
114
Member Avatar for muralibobby2015

hello.. actually i am entering starting date. and also giving period in digits.for example 2yrs. to day date 22/01/2010. after 2years that date will 22/01/2012. how to find end date using javascript.

Member Avatar for muralibobby2015
0
78
Member Avatar for sakura_fujin

hi, my php/ mysql query code does not insert data to my table and prints out an error. pls help ive been at this for hours without figuring out what's wrong. my code: <?php mysql_connect("localhost", "root", "") or die(mysql_error()); mysql_select_db("fppms") or die(mysql_error()); mysql_query("INSERT INTO employee record(Employee ID, Employee type, First …

Member Avatar for sakura_fujin
0
91
Member Avatar for chuckjessup

Ok this is frustrating, I am still learining how to scritp in php, and so far i have not done too bad... however i cant figure this out, i think if i got a few fresh eyes on this, you might see what i am not - the idea is …

Member Avatar for pritaeas
0
62
Member Avatar for emmanueloladele

Hello All, when I add/Delete data to my database (MySQL) using php, i discover that when i refresh the page my Add/delete script runs again and add (or attempt to delete) another copy of the record i added/deleted initially. How can I prevent a block of php script from running …

Member Avatar for newtoweb
0
5K
Member Avatar for architact

Hello, I am developing a site and right now I am facing a problem when I try to upload the code on the server, everything is fine and working there except the flash files, the ".swf" files are showing on the page when access them through the website but they …

Member Avatar for hemgoyal_1990
0
92
Member Avatar for aneeka

Anyone, help me here. Is my code possible? I need to assign the total number of records from the database query to the graph of javascript. [CODE]]<?php mysql_connect("localhost", "aaaa", "aaa") or die(mysql_error()); mysql_select_db("aaa") or die(mysql_error()); $result = mysql_query("SELECT * FROM table WHERE field ='1'") or die(mysql_error()); while($row = mysql_fetch_array($result)) { …

Member Avatar for aneeka
0
102
Member Avatar for cwarn23

Hi and I have the below php-gtk script but for some reason it is reporting the error "Not enough storage is available to process this command." in the command console but the application still loads. It only happens when I try to import a 1.75MB text file for processing. Does …

Member Avatar for cwarn23
0
186
Member Avatar for ~Redous

Hi, im having trouble i managed to create a password field and got everything working i then changed my mind and wanted to add a username field on to the login. im getting the following error and i have tried both && and || yet none seem to work Parse …

Member Avatar for ~Redous
0
133
Member Avatar for Jak Dude

Hi, I've been looking for an avatar generator/maker script, does anyone know of one?

Member Avatar for hoffin
0
708
Member Avatar for LloydFarrell

hi all, Im teaching myself webdesign, php and mysql from the fourms here and watching youtube videos. I have come across this error that I cant resolve. Its driving me crazy and i cant find a solution for it. I was hoping someone cant help. Im building a web subscription …

Member Avatar for LloydFarrell
0
108
Member Avatar for crh0872

Hello again DaniWeb! I'm designing a dynamic website in PHP, and it's structured so that each page creates the necessary objects (based on what content is being viewed) which get the right information to display. Smarty then organizes this content and makes it look good. The problem is, I have …

Member Avatar for diafol
0
122
Member Avatar for anu.reka85
Member Avatar for tunde011

I want my website to remember people's email when they post on my website. [CODE] <form method="post" action="formposting.php"> <input type="text" name= "title" size="22"> <input type="text" name= "email" size="22"> <?php if(!$_COOKIE['cookname']) { echo "<input type=\"checkbox\" name=\"remember\" id=\"remember\" /> Remember me on this computer"; } else{ echo $email; echo "Forget Me{delete cookie//help …

Member Avatar for vaultdweller123
0
112
Member Avatar for catcoffee

Hi! That's me again. And I'm still an idiot, and I need yours help. Terms of tasks: Show photos with the ratings. Problem: Rating display pictures. And if the first base photo have rating 4, the code for all the other photos, too, shows a picture rating 4. What am …

Member Avatar for catcoffee
0
82
Member Avatar for manojjena1982

Hi! Akl I want to upload a file sizeed around 2GB. Could you help me? Thanx in advance

Member Avatar for kireol
0
110
Member Avatar for nehashri

hey all i am stuck with this problem while i am trying to make a software. here i have a form that has to be filled by the user. form1, form2, form3 and form4. In form2 there are two radio button 'yes' and 'no'. So when the user selects yes …

Member Avatar for amd_k8
0
114
Member Avatar for michelleradu

Hi I got 1 static drop down list, 1 dynamic drop down list(shows content of a mysql table) and content of another mysql table on the same webpage. They are all placed on 3 different forms. The selected option in the first list triggers the 2nd list on the page. …

Member Avatar for vaultdweller123
0
220
Member Avatar for takeshi

can't delete records.. here's the codes.. [CODE] <?php mysql_connect('localhost','root',''); mysql_select_db('records'); ?> <?php if(isset($_GET['btndelete'])){ $position = $_GET['position']; if(isset($position)){ foreach($position as $val){ mysql_query( "DELETE FROM positions WHERE id='".$val."'" ); } } } ?>[/CODE] [CODE] <html> <head> <tittle> confirm </title> <script> function deleterec(){ if(confirm("Are you sure you want to delete?")){ return true; }else{ …

Member Avatar for vaultdweller123
0
132
Member Avatar for muralibobby2015

hello.. i did one simple task. but values are not holding after submit. how to solve this problem. below is my code. after interest field submit the form. automatically displays the monthly payment. but that value is not holding in the field.[CODE]<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html …

Member Avatar for nav33n
-1
152
Member Avatar for ribot

Hi! I'm trying to install a php product that requires ioncube loader. I have followed several guides (they are all the same) for how to install it. Running ioncube-loader-helper.php tells me the location of the php.ini file. The server has a set of ioncube loaders, and the helper tells me …

Member Avatar for ribot
0
164
Member Avatar for xuexue

hi there, i want to display my data coming from database..i could do that using a table, however the problem is that the table will just expand everytime there is data. what i want to have is a control which has a scrollbar which will display lots of data. i've …

Member Avatar for CJesusSaves
0
126
Member Avatar for khadrani_arif

Hi, Here I am having a dropdown named Category and another drop down named Sub category.There is one text box named zipcode which is filled with the previous request page.What happens is when I select any category the onchange event fires and a list of cars gets displayed.But parallely the …

Member Avatar for CJesusSaves
0
753
Member Avatar for aneeka

please help me visualize an online examination, i dont know where to start...:icon_sad:

Member Avatar for amd_k8
0
89
Member Avatar for hno

hi, How can convert an ANSI text file to UTF-8 by php?Or how can make UTF-8 text file with php? Thanks

Member Avatar for amd_k8
0
70
Member Avatar for phpDave

Hi, I have 2 pages were the user inserts data into the database. Page one goes into parent tabel and page two goes into child tabel. Everything works fine unless the user completes page one but not page two. If only page one is complete and user logs off and …

Member Avatar for CJesusSaves
0
102
Member Avatar for kriegz

How can I showing up a report file (*.rpt) from crystal report into a web browser with PHP, I'm already used this code : $cr=new com("Crystal.CRPE.Application") or die("cannot load cr com"); $rn="C:\WAMP\k\allreports\BS18A.rpt"; $rap=$cr->OpenReport($rn); but there was'nt happen any thing, it just a blank page comes up could any one give …

Member Avatar for siddeshp
0
211

The End.