Forum: Geeks' Lounge 12 Days Ago |
| Replies: 13 Views: 548 Okay! Here is the direction. From this point >> * << Go straight up and stop when you see the text "Software Development". Since you have already traveled this far, you might be tired and maybe you... |
Forum: PHP 21 Days Ago |
| Replies: 104 Views: 2,786 The quality is okay. The seek bar doesn't work though. And since it doesn't work, it's difficult to know the duration of the video (and go forward or backwards). But, overall, thumbs up for the... |
Forum: DaniWeb Community Feedback 21 Days Ago |
| Replies: 7 Views: 836 I know she has her priorities (Its been a week since I posted this thread and haven't got her reply. So, I know she's busy). Moreover, that was just a suggestion (it's `daniweb community feedback`,... |
Forum: DaniWeb Community Feedback 22 Days Ago |
| Replies: 7 Views: 836 :) My point exactly. Why do you need something which don't yield any result ? It's not about assuming (or not assuming) something. |
Forum: PHP 28 Days Ago |
| Replies: 1 Views: 179 You are almost there! I have modified your code, very small changes.
<?php
if(isset($_POST['submit'])) {
for($i=1;$i<=$_POST['count'];$i++) {
$textfieldname = "marquee_".$i;
print... |
Forum: PHP 28 Days Ago |
| Replies: 14 Views: 325 FYI, index is a mysql reserved keyword. If at all you want to use them, you should use `, like, `index`. I personally don't prefer using reserved keywords.
Here ... |
Forum: MySQL 28 Days Ago |
| Replies: 4 Views: 375 http://dev.mysql.com/doc/refman/5.1/en/innodb-foreign-key-constraints.html Check for foreign key constraints, primary key, foreign key in google. |
Forum: DaniWeb Community Feedback 28 Days Ago |
| Replies: 3 Views: 446 Hmm.. Right.. This (http://www.daniweb.com/newsletter/) link is missing! |
Forum: DaniWeb Community Feedback 28 Days Ago |
| Replies: 7 Views: 836 Okay, one more suggestion.
Why should 0 be a hyperlink in this case ?
Clicking that leads to nowhere. It says,
Look at niek_e (http://www.daniweb.com/forums/member113712.html)'s profile for... |
Forum: DaniWeb Community Feedback 28 Days Ago |
| Replies: 3 Views: 550 :D I passed with flying colors already. |
Forum: DaniWeb Community Feedback 28 Days Ago |
| Replies: 2 Views: 326 case solved. The site was down. :) |
Forum: DaniWeb Community Feedback 28 Days Ago |
| Replies: 2 Views: 308 Ah! that explains it. Thanks for your quick response Dani. Cheers! |
Forum: DaniWeb Community Feedback 28 Days Ago |
| Replies: 2 Views: 308 |
Forum: DaniWeb Community Feedback 28 Days Ago |
| Replies: 3 Views: 550 |
Forum: DaniWeb Community Feedback 28 Days Ago |
| Replies: 2 Views: 326 :icon_eek: Strange things have been happening lately.
1. Visited threads are still marked as unread ?
2. Even though I made the last post in this ... |
Forum: PHP 28 Days Ago |
| Replies: 4 Views: 563 ckeditor ? Hmm.. Haven't tried it. Anyways, goodluck man. Cheers! |
Forum: PHP 29 Days Ago |
| Replies: 4 Views: 563 Pretty simple. Fetch the data from the database and place it between <textarea> tags. Here is an example.
<?php
if(isset($_POST['save'])) {
print "<pre>";
print_r($_POST);
print "</pre>";... |
Forum: DaniWeb Community Feedback 29 Days Ago |
| Replies: 43 Views: 3,311 Its fine! I changed it to +1 when I saw your comment :D
(and those 3 posts didn't deserve a negative vote!) |
Forum: DaniWeb Community Feedback 29 Days Ago |
| Replies: 7 Views: 836 Hi all,
I have a suggestion (not sure if it has already been discussed).
In the profile, at the community tab, we have, for example,
If this number 10 is made a href linking to all the... |
Forum: PHP 29 Days Ago |
| Replies: 104 Views: 2,786 Great! That would solve around 80% of the question asked by the members! Good luck.. |
Forum: PHP 29 Days Ago |
| Replies: 104 Views: 2,786 How about a tutorial on pagination (this question has been asked n number of times) , carts, htaccess, image handling, regular expressions, ... |
Forum: MySQL 30 Days Ago |
| Replies: 11 Views: 608 |
Forum: PHP 30 Days Ago |
| Replies: 14 Views: 325 Since you aren't seeing the notices anymore, you have solved that problem. The other 'problem' you are talking about is a user defined error message. That simply means, you have written the logic... |
Forum: PHP 30 Days Ago |
| Replies: 14 Views: 325 What did you change ? php.ini or your script ?
If you are talking bout php.ini, did you restart your server ? |
Forum: PHP 30 Days Ago |
| Replies: 14 Views: 325 Notices are not errors. If you try to use a variable without initializing it, you will get a notice. To disable notices, edit your php.ini and set error_reporting as,
This will show all the... |
Forum: PHP 30 Days Ago |
| Replies: 5 Views: 231 I would still think about encrypting my password. :) Anyways, Congrats and good luck. |
Forum: MySQL 30 Days Ago |
| Replies: 7 Views: 372 Umm.. I am not 100% sure if that is how you are supposed to write a query in java. As far as I can see, there is no need to use trigger in your case and its better you post your question in java... |
Forum: PHP 30 Days Ago |
| Replies: 11 Views: 538 I have used zend studio, aptana, php Designer, eclipse, netbeans, maguma studio, dev php, editplus, etc. Among all these, I liked zend studio 5.5 more. The later versions, 6 and 7 had a lot of bugs... |
Forum: MySQL 30 Days Ago |
| Replies: 7 Views: 372 Can you explain how you are storing these values in the table ? Here is a simple example of what I am talking about. Its in php, but I am sure its not completely different from java.
<?php... |
Forum: PHP 30 Days Ago |
| Replies: 7 Views: 227 Also, try sending a simple mail to see if it works.
<?php
mail("youraddress@domain.com","test","test mail ! Hope it works","from: youraddress@domain.com");
?>
If it does, then its obvious... |
Forum: MySQL 30 Days Ago |
| Replies: 11 Views: 608 Try this.
$query = "select * from table where Concat( column1, ' ', column2 )
LIKE '%".$search."%'";
This will return all the rows from the table where column1 concatenated with column2... |
Forum: MySQL 30 Days Ago |
| Replies: 7 Views: 372 Why don't you calculate the difference between starttime and endtime and insert the difference while inserting values to the first 2 columns ?
I haven't used triggers myself, but I think its... |
Forum: MySQL 30 Days Ago |
| Replies: 3 Views: 346 I am not sure if I understood your question right. As far as I understand your question,
1. you can't select a record/row from the table without knowing the column you are querying on. You should... |
Forum: PHP 30 Days Ago |
| Replies: 5 Views: 231 Instead of storing the password just like a normal string, save it as an encrypted string, using SHA1 or something. This will provide you more security as well as solves your issue.
Here is an... |
Forum: PHP Sep 16th, 2009 |
| Replies: 13 Views: 4,310 It works as it is. I haven't used iweb09, so I don't have the slightest clue :(
If you post your relevant code, maybe someone who has experience on iweb 09 can help you out! |
Forum: PHP Sep 14th, 2009 |
| Replies: 13 Views: 4,310 Hi! Welcome to Daniweb.. Is this what you want ?
<html>
<head>
<script type="text/javascript">
function enableButton() {
if(document.getElementById('option').checked){... |
Forum: Geeks' Lounge Sep 3rd, 2009 |
| Replies: 5 Views: 621 |
Forum: PHP Aug 25th, 2009 |
| Replies: 4 Views: 424 What is the problem ? You would be selecting CourseName and courseID. So, when you post the form, You will have "MATHS" in $_POST['CourseName'] and "101" in $_POST['courseID']. Then it is all about... |
Forum: PHP Aug 25th, 2009 |
| Replies: 19 Views: 554 :) Thanks for waking me up. That is absolutely right. |
Forum: PHP Aug 25th, 2009 |
| Replies: 3 Views: 622 Go to mysql console and create a new user either by following http://dev.mysql.com/doc/refman/5.1/en/adding-users.html OR go to phpmyadmin -> mysql database -> user table. Add a record there filling... |