39,326 Topics

Member Avatar for
Member Avatar for smartness

Hi guys, can you please suggest me a good class that supports sub-sub-sub categories. I tried a lot of them, none of them seems to fit me! I also tried to modify them for my needs, but the more i try, the worse it gets lol :P If you know …

Member Avatar for kireol
0
131
Member Avatar for samiq

PHP HEllo world, i need some help here plz. i want to make an addressbook and want to have an index file that includes/requires all the other files in the include folder(the include folder contains all the functionality) so that i dont have to manually include files in other files. …

Member Avatar for samiq
0
143
Member Avatar for LaFreak

Hello all, <?php $result = mysql_query("SELECT Artikelnummer, Artikelmerk, Artikelnaam FROM Product ORDER BY Artikelnummer;"); printf('<table class="adminblok">'); while($r = mysql_fetch_assoc($result)) { printf("<tr><td>[B]<a href="#">[/B]%u[B]</a>[/B]</td><td></td><td>%s</td><td>%s</td></tr>",$r[ "Artikelnummer"], $r["Artikelmerk"], $r["Artikelnaam"]); } printf('</table>'); ?> The codes that are printed [B]bold[/B] are the tags that don't work on my website! Why is this and how can i …

Member Avatar for vaultdweller123
0
102
Member Avatar for LaFreak

Hello, I have a problem with styling my background. I want it to be just like this background: [url]http://psd-fan.com/[/url] I don't care how to it, with an image or just a border-style:solid; Both is fine! -> [U]But how do I make sure the background fills up 100% of the users …

Member Avatar for vaultdweller123
0
61
Member Avatar for lws1976

I recently install wprdpress to my website, after all steps done, when I log in it show this error: Parse error: syntax error, unexpected '@' in /home/carsonle/public_html/wp-includes/general-template.php on line 430 After check my general-template.php files line 430 it show this: if ( !empty($cat) ) { Anyone can help me?

Member Avatar for ShawnCplus
0
96
Member Avatar for achiman

Hi, Can anybody please tell me if there is a code in PHP that I can attach to a link and when it is clicked the web page is printed

Member Avatar for achiman
0
114
Member Avatar for Dilbert137

Dear All, I'm searching a code which allow the user to download directly a file from the php web page. Has anyone knows how to do it? It seems to be a simple coding. Regards Dilbert137

Member Avatar for Dilbert137
0
137
Member Avatar for basantxbs

Hi Everybody I want list a categories in a tree structure. like this cat 1 --> cat 1.1 -->cat 1.1.1 --> cat 1.2 cat 2 cat 3 i have a code which show all the category subcategory at a time but i want only those sub-category whoose parent category is …

Member Avatar for diafol
0
114
Member Avatar for rutaba
Member Avatar for moerpheus

hi, how do i get pdf lib to work with php. I want to generate pdf docs. please help.

Member Avatar for moerpheus
0
71
Member Avatar for virspy

Hello Friends, can u please help me in coding of Advance of search iam getting the normal search but not getting the advance search so please help me and please see the site [url]http://www.slinfosolutions.com/Restaurant/[/url] i require the search for this please Thanks in Advance Viru

0
48
Member Avatar for Stefano Mtangoo
Member Avatar for bas_brain

Someone can explain to me why and when we need to reference variables and function. example: function &load_class() { } or $class = &new Class(); I also noticed that some php code vars sometimes appears like this: $_var instead of $var; there is any reason for that.

Member Avatar for harshbavaliya
0
96
Member Avatar for s2xi

Hi, I searched all over the net for a clear solution but what solutions i have found just leave me with more questions and answered. I have a multi step form using IF statements such as: [CODE] if(isset($_POST['2'])) { echo "step2 data"; }else if(isset($_POST['3'])) { echo "step3 data with text/ …

Member Avatar for s2xi
0
103
Member Avatar for cyberoptik

Hi, I'm only familiar w/ phpbb, what are the advantages of Vbulletin? Usually the larger forums use vbulletin, and the smaller forums use phpbb (like mine, heh) just curious what the big deal is. Teach Me @.@ hehe Thanks all. Ron Johnson

Member Avatar for jostevensdd
0
5K
Member Avatar for sassenach

Hi, I have a site which i added mod write to the url. Some of the pages are not opening correctly. For example, the WHIWH login, should open a user & pass field in the page. You can see it is not opening it. [url]http://www.whiwh.com/login/[/url] Also a page like this …

Member Avatar for sassenach
0
644
Member Avatar for sarithak

Hi frnds... i m trying to upload mp3 file ..this is my code.. [QUOTE]upload_max_filesize = 20M;//in php.ini[/QUOTE] [CODE] $tname = $_FILES["tphoto"]["name"]; $ttmp_name = $_FILES["tphoto"]["tmp_name"]; //Audio File Uploading.... if($_FILES['tphoto']['type'] == 'audio/mpeg'){ $dir="../../music/$aid"; move_uploaded_file($ttmp_name,"$dir"."/"."$tname"); } [/CODE] it displays no error...but, no output. can any body give me some suggestion plz... Thanks in …

Member Avatar for abhicool1
0
3K
Member Avatar for Mike516

[code] //declare variables $thing = $_SESSION['username']; // get username from session $name = mysql_real_escape_string($_REQUEST['name']); $pwrd = mysql_real_escape_string($_RQUEST['pass']); //$mpwrd= md5($pwrd); $error = 0; $select = mysql_query("SELECT * FROM users WHERE username='$username'"); $numrows = mysql_num_rows($select); $check = mysql_query("SELECT * FROM users WHERE username='$name'"); $check2= mysql_num_rows($check); //if submitted if (isset($_POST['submit'])){ if(!$name){ $error ++; …

Member Avatar for kireol
0
92
Member Avatar for loll_l

Hi, I have recently designed a website for my new business. I have included a booking form which can be found here [url]www.n-v-m.co.uk/Booking.html[/url] I used Dreamweaver CS4 to create the site and 123-reg.co.uk is my web host As it’s my first attempt at making a website I realise I may …

Member Avatar for harshbavaliya
0
1K
Member Avatar for loll_l

I am trying to go through this tutorial [url]http://www.daniweb.com/tutorials/tutorial173026.html[/url] but when I load a php document in my browser I either get a blank page in the browser or dreamweaver opens the php and gives me a blank page! My web host is [url]www.123-reg.co.uk[/url] ... Will the problem be with …

Member Avatar for loll_l
0
136
Member Avatar for james.jakab

I want to know that is there any best MLM Script/System available for network marketing. Can someone point me to the right direction. Any help will be appreciated.

Member Avatar for vladimir26
0
101
Member Avatar for kripssmart

Hi, I have 2 web pages pg1.php & pg2.php and I am providing a link from pg1.php to pg2.php. I am able to navigate but I can't pass parameters. When the user clicks on the link, I need to pass certain parameters also from pg1.php to pg2.php. I wrote the …

Member Avatar for vaultdweller123
0
90
Member Avatar for nats01282

I am after a text are like the one in the quick reply at the bottem of this page, I have no idea what the propper name is for them I have no idea to do the coding for it, but would like to be able to let my friends …

Member Avatar for kireol
0
91
Member Avatar for Mujahid158

I'm developing a simple instant chatting system. I need to do the following; I want to refresh a different page when I click submit. Suppose, I've the submit button on page1, on clicking submit, the page2 should be refreshed/reloaded. How can I do it? I've searched a lot on Google …

Member Avatar for diafol
0
147
Member Avatar for takeshi

Anyone knows how to code in this: when i delete a particular record,it display first "[ICODE]Are you sure, you want to delete?<br>Yes, No"[/ICODE]all i know is in Vb but i dont know in php..i know if-else statement are present in that code..tnx in advance!

Member Avatar for vaultdweller123
0
135
Member Avatar for muralibobby2015

hello.. i have one dropdown box in while loop. when i am select one option for one row without submit it can only change. how to do? actually i am retriving data from database. here status dropown is here. then i selected status on dropdown for particular content. so it …

Member Avatar for diafol
0
114
Member Avatar for mortalex

Hey, i'm new here and i need help. I'm trying to write an update query so i can update mulitple items in a database, but it aint working.. Ive used the mysql_error() thingy, but it still does not display any errors. All it does is nothing, the web page doesnt …

Member Avatar for vidalweb
0
269
Member Avatar for achiman

Can anyone please tell me how I can write a PHP program to automatically generate bar code when a code is entered e.g 04565434782 using universal product code (UPC-A). Thanks

Member Avatar for achiman
0
62
Member Avatar for Stearmandriver

Hi there, This may be a dumb question, but I was wondering: is there any way to determine the address of the raw xml document that serves data to a web page? I'm interested in incorporating the Washington State ferry schedule information into a widget on my site, and it …

0
58
Member Avatar for ashafaaiz

Hi, I am creating as API using XML-RPC in php to fetch a database record that matches id of that record. It works well but i could not fetch all records that matching the criteria unless it returns only one record or the last record. What should be the server …

0
63

The End.