-
Replied To a Post in Update mysql database with a phphtml form
Line 34 should be: `$query=getenv('QUERY_STRING');` `$_POST['name1']` and `$_POST['shift']` clearly do not have a value submitted (or they wouldn't return as undefined). As a result, the update query fails along with … -
Began Watching Responsive gallery with thumbnails
Can anyone suggest a responsive gallery which has a main slideshow with auto generated thumbnails and allows for captions? -
Replied To a Post in Responsive gallery with thumbnails
Personally my favorite is: [WOW Slider](http://wowslider.com/responsive-slideshow-chess-blinds-demo.html), but [Slippery](http://slippry.com/examples/thumbnails/) is also pretty good. WOW will do everything, plus extras like animations and stuff and comes with tons of different designs and … -
Began Watching How to
how to make like the picture below with jquery and php  -
Replied To a Post in How to
I think I get what you mean, but your question it very poorly worded. Here is a [jsFiddle](http://jsfiddle.net/vstemge7/) of a similar button, and some jQuery to change the number of … -
Began Watching Problem with favicon.ico
Hello i have done a favicon.ico to put in the address bar. Although is shows locally (wampserver) when i put it online the icon doesnt appear. This is what i … -
Replied To a Post in Problem with favicon.ico
Then I would still re-upload from scratch, as this *should* fix that. Maybe in the renaming process your server has a problem and didn't quite finish it or something. Either … -
Began Watching Quiz form creation
I need to create a leaderboard for a online quiz that I am about to conduct.... I also need to setup a login and a seperate forum for users in … -
Replied To a Post in Quiz form creation
Well clearly this is something you need to actually think about doing. **Do you know EXACTLY what you want to craete?** You have a lot of components/requirements there. Maybe think … -
Began Watching client website up date and news pages
hello dani friends. i'm working on webdesign and web developement from 2 years autolearning on interent. now i'm capble to make a website for a client using php/mysql and html5/css. … -
Replied To a Post in client website up date and news pages
> i don't know how i can allow my client to create news pages in that panel if i do it. I agree with @gabrielcastillo, a framework is the SAFEST … -
Replied To a Post in Bootstrap Modal how to pass value?
Well have you checked to make sure the rest of your markup is like mine in the fiddle. Because the rest of your HTML that you've provided is legitimate (as … -
Gave Reputation to Clarence Weldy in Need Suggestion about WordPress Theme?
Hey Guys, I need your valuable suggestions, please help me out with this. I am going to use this theme called “Invado” for my next project, please share your views … -
Began Watching Custom Pop-up panel on right bottom
I want to add the custom panel which include The Subscribe button and some text (ex: Subscribe to receive newsletter for each updates) But this panel should be pop-up as … -
Replied To a Post in Custom Pop-up panel on right bottom
Agreed with @diafol. Things like this can sometimes be a bit too pretty, and begin to weigh everything else down. But if you want to try this idea then lots … -
Marked Solved Status for DaniWeb .htaccess
Hi All, Over the years I have smashed through God knows how many brick walls with `.htaccess`, and all I've learnt is don't even try to make it complicated as … -
Replied To a Post in DaniWeb .htaccess
> Codeigniter is a great framework and is very friendly. I would recommend starting off on codeigniter than cakePHP if you are just getting into php frameworks. Thanks for the … -
Began Watching Writing and Image to existing image using PHP
Hi, Everyone... I have a php script that writes text to an existing .png file. image 1 - I would like to write / add image 2 too image 1 … -
Replied To a Post in Writing and Image to existing image using PHP
Have a look at [this](http://www.white-hat-web-design.co.uk/blog/resizing-images-with-php/). You could use that to adjust the size of your image after it has been saved. It seems relatively easy to handle, and also provides … -
Replied To a Post in clearTimeout() not working
Sorry but I need to get my head around this: @jresponse - why have you created another fiddle, that is a million times more complicated to handle? Using bind methods … -
Began Watching Best way to track users score each day
Hi, I'm creating a game where users play daily & earn points. I wanted to record the scores of each user each day for a month. At first, I thought … -
Replied To a Post in Best way to track users score each day
I see one way to do this (and someone else might have another idea): I would create a table that logs the user, the score and the date. Then you … -
Began Watching clearTimeout() not working
Hi, I'm trying to remove a script added by setTimeout(). I tried to use clearTimeout() but seems like it's not working. This is what should happen: Click Btn1 to include … -
Replied To a Post in clearTimeout() not working
Hi, I've tried to replicate what you want, but instead using a little function instead of `setTimeout()`. `setTimeout()` isn't really meant for this sort of thing, whereas my little function … -
Gave Reputation to Shodow in Bootstrap Modal how to pass value?
i want to pass the value of mysql to modal -
Replied To a Post in Bootstrap Modal how to pass value?
Sorry, my magical powers are a bit cloudy this morning, can't seem to guess whats not working for you for some reason... **Show your error messages and actually tell us … -
Began Watching unable to receive email notification in php
Hi...tried to send email notification in php but not successful. When i check my email there is no email notification received. Below is the coding. Once the user click notify … -
Replied To a Post in unable to receive email notification in php
I had this problem when testing on localhost once... The thing was, is that my xampp server didn't have a functioning mail server (SMTP). Unfortunately, you need to upload your … -
Began Watching Bootstrap Modal how to pass value?
this is my modal button this is within the table that why i use echo $rows['id'] <a data-id="<?php echo $rows['id']; ?>" type="button" class="btn btn-success btn-lg btn-block" data-toggle="modal" data-target="#myModal">View Order</a> this … -
Replied To a Post in Bootstrap Modal how to pass value?
Just saying, it's very unhelpful when people don't actually post a problem, but hey ho... I can instantly see one error in your code however, and you are closing one … -
Began Watching How to get filedate from a file on client machine
I would like to capture the modification date from a log file on the client machine in order to warn users (technical on an internal website) that they have not … -
Replied To a Post in How to get filedate from a file on client machine
> If I ran batch script on the client machine I totally agree with @difol! How dangerous it would be if you could run a batch script on a client … -
Began Watching Show dropdown based on checkbox
Hi how do I use jQuery to show a Jquery mutliselect based on a checkbox option, here is my codes //html <input type="checkbox" value= "checkbox1" name="checkbox1"> <select id="dropdown" name="dropdown" multiple="multiple"> … -
Replied To a Post in Show dropdown based on checkbox
You need to use `$('input#checkbox1').click()` and apply a function to that. I've done a mini mockup on [jsFiddle](http://jsfiddle.net/cos2kvvn/), but for reference here is the code explained: // When checkbox clicked … -
Began Watching can we cache the whole page data which can be reload after page refresh
Why this question arised?? I have used jquery Tabs in my application. On controller I have opened First tab with employee's names. Clicking on employee name opens another tab by … -
Replied To a Post in can we cache the whole page data which can be reload after page refresh
> Can we save whole page in cache and reload it again? For reference, yes this can, but not using Javascript. You you want to venture into server side languages, … -
Replied To a Post in Saving picture
> I use pure PHP. Mangled in with HTML. I completely agree with @iamthwee, your future projects would seriously benefit from some sort of framework. IF you are doing this … -
Began Watching Twitter Bootstrap
I have a curious issue with Twitter bootstrap, I include the bootstrap.js , but my popovers and tooltops dont work? `<button type="button" class="btn btn-lg btn-danger" data-toggle="popover" title="Popover title" data-content="And here's … -
Replied To a Post in Twitter Bootstrap
You need to call the methods in javascript. Use: `$('#your_id').popover()` or `$('.popover').popover()` and apply the `.popover` class to all of your popovers. Here's a [jsFiddle](http://jsfiddle.net/acr6kedt/) to demonstrate. Just change the … -
Replied To a Post in ok. that's me leaving daniweb
Ahh right fair enough, nothing to worry about then ;) -
Replied To a Post in Integrating a query to the design made by my classmate
Use the following code, I missed a `;` on line 23 above. $output = '<div class="panel-group" id="accordion">'; $stmt = $db->query('SELECT postID, postTitle, postURL, postDesc, postDate FROM posts ORDER BY postDate … -
Began Watching ok. that's me leaving daniweb
What on earth is going on.I'm trying really hard to build a good reputation on this site putting a lot of effort into responses i tackle. Last night I recieved … -
Replied To a Post in ok. that's me leaving daniweb
> i cant even see what for. Agreed. I think he may have a point here though. I have down votes, and would like to increase my rep while I'm … -
Began Watching Windows 10 Tech Preview
The tech preview of the latest version of Windows (albeit still in flux) is now available for download. True to form, Microsoft assumes that we are idiots. In order to … -
Replied To a Post in Windows 10 Tech Preview
**I think [this clip](http://www.youtube.com/watch?v=QRyIJ221tZg) sums it up perfectly aha.** Just because Microsoft would like to point out that they are soo different from everyone else, they must reinvent counting to … -
Began Watching Integrating a query to the design made by my classmate
Ok so here's the thing my classmate did a very good html file...this is the basis of the design of our homepage...there is a part where I should put the … -
Replied To a Post in Integrating a query to the design made by my classmate
Well it's nice to see someone using OOP for a change in the paginator class. Try to keep to this good habit aha. Simply put the while loop inside your … -
Replied To a Post in Saving picture
> Notice: Undefined variable: image_id in update_image2.php Means exactly that. There is no `$image_id` either being defined or assigned. So this might mean that there is no $_GET or $_POST … -
-
Began Watching jquery is not firing
hello. I have a page with two tables, .contact-names and .guest-list, and a drop down list. by default the tables are empty but shows message "please select an event" from …
The End.