39,316 Topics

Member Avatar for
Member Avatar for LastMitch

Hi I been doing some research on **PHP Frameworks**. I want to know what other Daniweb members used as **PHP Frameworks**? I'm still new to understand how it works but would like to know which one will suit my skills, so I can built on ... to move forward to …

Member Avatar for LastMitch
2
161
Member Avatar for Nirmeen Ased

hi, i need some simple ideas for my graduation project, i'll use PHP to develope it, hope you'll help me. redgards.

Member Avatar for ryantroop
-1
146
Member Avatar for onofej

Hello, I have all my php documents in one folder to handle my form creating, and i have all my html files in one directory as well. but in my php code i want when a user click on the hyperlink in php page it shoud yake the user to …

Member Avatar for diafol
0
1K
Member Avatar for arcticM

can someone share with me a link where I can download a free menubar? I just can't find anything that I can just take and paste in my project. I have my menu data in DB (not hardcoded in html) and I'm looking for a multi-level(atleast 3 levels) dropdown menu. …

Member Avatar for diafol
0
275
Member Avatar for weemy

Hello, it's my first post here, i have a big issue "as i can see", i'm creating a cms script, and have a problem with image, that i want to make the clint chose any image and press submit, here i want to make a thumb of this image with …

Member Avatar for diafol
0
149
Member Avatar for andyy121

it show me this when i click the previw button to show the page how i can fix this? Warning: include(funck.inc.php): failed to open stream: No such file or directory in C:\xampp\htdocs\search\index.php on line 1 Warning: include(): Failed opening 'funck.inc.php' for inclusion (include_path='.;C:\xampp\php\PEAR') in C:\xampp\htdocs\search\index.php on line 1

Member Avatar for andyy121
0
548
Member Avatar for DarkMonarch

hey guys, finally have some time to think about a personnal project. i want to create a stock screener, with some cross checks on data like oscillator, MACD, volume and moving average. my 1st step was to look around and see if they're was any finance API out there that …

Member Avatar for DarkMonarch
0
220
Member Avatar for rm_daniweb

Hi All, I just want to share my code. A lots of website said that php is on server side and javascript is on client side...they said we cannot run php on javascript... here's how we can run php function when you click call the onchange events on javascript. [code=php]function …

Member Avatar for talad
0
3K
Member Avatar for deovratb

Hi guys , I am new to php. I want to fill a mysql table which contains numerous fields.I need to develop four form on different pages and i need to insert all the values in the same table . any help will be appricited.

Member Avatar for bettybarnes
0
48
Member Avatar for DaveyMoyes

Hi all, I have the follwoing pagination script that is working great, But, What I am trying to do is remove the page numbers from the script, Any help would be greatly appreciated - <?php /* Now we apply our rules and draw the pagination object. We're actually saving the …

Member Avatar for DaveyMoyes
0
667
Member Avatar for reco21

Im grabbing a page with below. $homepage = file_get_contents('http://www.example.com/'); echo $homepage; How do I write it to a file.txt and overwite in the event the file exists ? Thanks.

Member Avatar for reco21
0
1K
Member Avatar for penet.biz

Hi, I have this code: <?PHP require ("connect.php"); //$db_handle = mysql_connect($server, $user_name, $password); =>$connect $db_found = mysql_select_db($_mysql_db, $connect); if ($db_found) { $SQL = "SELECT * FROM cheats"; $result = mysql_query($SQL); $i=0; while ($db_field = mysql_fetch_assoc($result)) { if($i%2===0) { $mesaj="<li><a href=\"{$db_field['Image']}\" class=\"pirobox\" title=\"{$db_field['Titlu']}\"><img src=\"{$db_field['Image']}\"/></a><p>{$db_field['Content']}</p><div class=\"button\"><pre><a href=\"#\">Read more</a> <a href=\"{$db_field['Download']}\">Download</a></pre></div></li>"; print ("$mesaj"); …

Member Avatar for abiec
0
116
Member Avatar for HasNor

Dear experties, I have a problem to insert checkbox value that called from database. How can I identify each checkbox's value? This is my code to show the checkbox. Dont know how to post the value to insert into database if checked. Please give me idea to solve it. Thank …

Member Avatar for HasNor
0
261
Member Avatar for geneh23

Hey everyone, So I know you all are probably getting tired me posting questions and are wanting me to look this up. I have looked and searched to my wits end.. I want to be able to gather my post id's (pid)'s and my album id's from different tables to …

Member Avatar for geneh23
0
524
Member Avatar for morrisproject

HI, Is it possible to be able to upload a load of images in one go from a camera, using there file name and saving them in to my database? I have created a table called images, with fields, image_num and image.

Member Avatar for diafol
0
456
Member Avatar for shuka79

Hi Guys I am currently setting up a cookie message to tell users of the site that cookies are being used (EU cookie law) I have managed to get this working on all desktop browsers, however I am having issues with mobile device ie iPhone, iPad, Galaxy tab etc I …

Member Avatar for diafol
0
276
Member Avatar for ag99110011

Type the following lines and save them as a.php <html> <body> <? echo "hello world"; ?> </body> </html>

Member Avatar for diafol
0
75
Member Avatar for ag99110011
Member Avatar for NinjaMediaD

Here is my issue, I am really perplexed when it comes to string parsing and manipulation in php. I am writing a database driven inventory using mysql and php. One of the issues is that there are multiple people who are able (by company rule) to add to this database. …

Member Avatar for NinjaMediaD
0
150
Member Avatar for theundeadelvis

Hello! We have an older site that was recenlty scanned and shown to be vulnerable to cross-site scripting and SQl injection. It was suggested that we modify our code to use prepared statements/PDO. They even offered this as a sample snippit of code: $user = 'xxxx'; $pass = 'xxxxx'; $dbh …

Member Avatar for Squidge
0
194
Member Avatar for rakibtg

i have a script which will fetch content from a website, what i wanna do is modify all that links. Suppose: $html = str_get_html('<h2 class="r"><a class="l" href="http://www.example.com/2009/07/page.html" onmousedown="return curwt(this, 'http://www.example.com/2009/07/page.html')">SEO Result Boost <b> </b></a></h2>'); so, is it possible to modify or rewrite it in this way> <h2 class="r"><a class="l" href="http://www.site.com?http://www.example.com/2009/07/page.html">SEO …

Member Avatar for rakibtg
0
549
Member Avatar for persianprez

I have a variable variable defined, suppose: $array[1] = Hello World; $i = 1; ${"name" . $i} = $array[1]; I then have the following: $val1 = "Hello World"; However when I try to compare $name1 to $val1, they are never equal. I've tried all of the following: if ($name1 == …

Member Avatar for persianprez
0
161
Member Avatar for klemme

I am trying to use function reference, to return values from an array inside an function. I need to echo info to 8 different places on a page, and was trying to do this by using a refernce. But havent much exp. in that, so as of now, I am …

Member Avatar for DarkMonarch
0
304
Member Avatar for 417linux

What I'm trying to acomplish is to have a list of years in a <form> with a checkbox for each year and let the user select what year applies to the post such as: 2008, 2009, 2012 (they might select 4 out of 5 years, not just one year). Then …

Member Avatar for 417linux
0
247
Member Avatar for jasperuser

Hi all, I am new to Ext JS, I have tried 'drag and drop' and it is working fine when i drag rows. What I am trying now is dragging a row (a field from MySQL) from left grid and dropping it on right grid that gives data from database …

Member Avatar for jasperuser
0
205
Member Avatar for dfable

Hello, I'm sorry I bumped old and solved article, so I'm opening new. The problem is here: http://www.daniweb.com/web-development/php/threads/419063/updating-single-record-in-mysql-table-with-php-using-toggle-button This works fine, except that I have to click button two times the first time to change the status. later itr works fine. Anyone knows how to fix that? Thank You!

Member Avatar for dfable
0
106
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

The End.