-
Replied To a Post in php like button
Possily remove AND Username = '".$user."'"; This is a guess though as I don't know about your db schema, application architecture etc. -
Began Watching Unable to insert , description text
$descrr = "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown … -
Replied To a Post in Unable to insert , description text
Probably the apostrophe in industry's -
Began Watching Initializing Variables in Constructor
Hey everyone, Got 2 questions here that i'm hoping will be answered. Say i have 2 variables int iValue; int iValueArray[300]; and later on init. them in the constructor Banana::Banana(): … -
Replied To a Post in Initializing Variables in Constructor
You have posted this 3 times -
Began Watching Create File with other files Contained in that file
I'm making a map editor for my game and I'm at the point where I need to save the map to a file. My Maps contain multiple layers though, which … -
Replied To a Post in Create File with other files Contained in that file
How about XML? Or Does Java Support Serialisation? -
Replied To a Post in Missing Private Message
Ok weird, maybe DaniWeb is hanunted? I got an email as below - any ideas?  -
Replied To a Post in Disturbing error
Just send it to the browser as htm rather than executing it, or debug it if your ide supports debugguing. -
Replied To a Post in Updating sql table using html form after retrieving the data from sql table
Ok fair enough. I've got a really busy day now though but look into iterating over the posted form collection and pulling out items starting with a name of "Comment" … -
Replied To a Post in Updating sql table using html form after retrieving the data from sql table
Ok well you should really be able to get your head around this then. Are you new to this job? -
Began Watching Disturbing error
I'm trying to parse a few references from a file and load them to mysql table but keep on getting this error everytim,e i run the script: DBD::mysql::st execute failed: … -
Replied To a Post in Disturbing error
Try debugging or outputting the sql statement then it will be easier to disgnose. -
Replied To a Post in Updating sql table using html form after retrieving the data from sql table
Sorry no I don't have a php development environment setup. Is this for your job or are you a student? -
Replied To a Post in On mouse click, the page refreshes
So how did that have the effect it was having? -
Replied To a Post in On mouse click, the page refreshes
Can you post the entire page or is it online somewhere? -
Replied To a Post in Nothing selected PHP
Your welcome, a nice easy one for a change! -
Began Watching On mouse click, the page refreshes
Hi Guys, I have the piece of code below and somehow when I click on the input to type some test, the page reloads(refresh). <div id="searchi"> <form id="search_box" action="search.php"> <input … -
Replied To a Post in On mouse click, the page refreshes
Any JavaScript in your page? -
Began Watching Nothing selected PHP
Hi Guys, I have this piece of code that should basically retrieve the priduct ID and display the producton a different page when clicked. I must be doing something wrong … -
Replied To a Post in Nothing selected PHP
You have prodid in your url. You are getting productID though in your code. -
Replied To a Post in Updating sql table using html form after retrieving the data from sql table
Ok so the problem is when you post this form back you get a load of posted values all with the same name "Comment" - see my screenshot below. So … -
Replied To a Post in Updating sql table using html form after retrieving the data from sql table
Ok excellent! Ok let me take a look... -
Replied To a Post in Updating sql table using html form after retrieving the data from sql table
Thsi isn't rendered html. It has php code in. Do you understand what rendered html is? -
Replied To a Post in Editorial Articles
Ok thanks -
Replied To a Post in Calculator
I still feel there may be more instructions than what was posted. We need the poster to confirm or deny this otherwise we cannot talk of facts. -
Began Watching sql syntax
// this works sql = "SELECT * FROM `image_upload` WHERE location='article' AND image_id='7'"; // this works sql = "SELECT * FROM `image_upload` WHERE location='article' AND image_id='9'"; // this does not … -
Replied To a Post in sql syntax
Because image_id cannot be both 7 and 9 right? What is it you want to achieve? Maybe sql = "SELECT * FROM image_upload WHERE location='article' AND (image_id='7' Or image_id='9')"; -
Created Missing Private Message
Hi Dani - I sent you a message and I got an email saying you replied but I have nothing in my Inbox :( Any ideas? -
Began Watching Missing Private Message
Hi Dani - I sent you a message and I got an email saying you replied but I have nothing in my Inbox :( Any ideas? -
Replied To a Post in Calculator
It says see section marked TODO. That's not there. The poster has to settle this disagreement - no point in us speculating about it all day long. -
Replied To a Post in Editorial Articles
I creaetd a test article to see how it works and am now ready to create a real one. I can't delete the test one though. Is that functionality not … -
Replied To a Post in Updating sql table using html form after retrieving the data from sql table
Sorry you have misunderstood what I asked for. If you run your code so you are viewing the other page in your browser and then you view the source - … -
Replied To a Post in Calculator
But that is not instructions, that is just a list. -
Replied To a Post in Bitmap Flickering when animating
Ok not sure about that then, sorry :( -
Replied To a Post in Bitmap Flickering when animating
Cool glad it worked. -
Began Watching Bitmap Flickering when animating
Hello, I'm having a problem with animating a bitmap on my form. There is a massive flickering when animating the bitmap. Is there anything I can do about this? Bitmap … -
Replied To a Post in Bitmap Flickering when animating
I think you can use double buffering - you will need to Google it, its been a while since I did animation. -
Replied To a Post in Calculator
It says the instructions are in Quiz.java "as shown in the instructions in Quiz.java" -
Began Watching Parse error: syntax error, unexpected end of file
Hello: I am getting a parse error while running a file on my server on my home machine: Parse error: syntax error, unexpected end of file I have been researching … -
Replied To a Post in Parse error: syntax error, unexpected end of file
Probably unclosed tag or speech marks. -
Replied To a Post in Updating sql table using html form after retrieving the data from sql table
I'm back now. Can you show me the rendered html - the view source - this will make it easy for me to explain what you need to do. -
Replied To a Post in Updating sql table using html form after retrieving the data from sql table
Ok its a bit more complicated that it first appeared then. I'm off out now,might be able to help later. Meanwhile maybe someone else cn help? -
Replied To a Post in Updating sql table using html form after retrieving the data from sql table
Ok thought so. So when you post back, you need to update all comments right? It looks like you are just running one sql statement at the moment right? -
Replied To a Post in Updating sql table using html form after retrieving the data from sql table
Does this form render multiple rows with multiple comment boxes? -
Began Watching Export data from mysql db to csv file using java
how to export my table data which is in mysql database to a csv file I am not getting any error or exception but my csv file is empty after … -
Replied To a Post in Export data from mysql db to csv file using java
You have records in the table? -
Replied To a Post in Updating sql table using html form after retrieving the data from sql table
Something like this I think? $sql="UPDATE customer SET COMMENT='$_POST[COMMENT]' WHERE MSISDN= '$_POST[MSISDN]';" -
Replied To a Post in Updating sql table using html form after retrieving the data from sql table
echo your $sql to see what it actually is. -
Began Watching Updating sql table using html form after retrieving the data from sql table
Hello. I have displayed data from SQL Table in the HTML form and I want to use this same form to update COMMENT field in the sql. I have already …
The End.