-
Replied To a Post in Page doesn't get updated - ajax/php
Post the relevant part of the generated HTML for the table. -
Replied To a Post in get content html website
You cannot load the data that is being loaded through AJAX with cUrl. -
Replied To a Post in get content html website
Show your code. -
Replied To a Post in Frameworks Vs No Frameworks
If you want to learn how they work, I'd suggest starting small and work your way up, or choose the most likely one you will encounter. For that, see the … -
Replied To a Post in Write .ini values encrypted, then read it?
> i need this a.s.a.p People here help you voluntarily, do not say you need it NOW, because they really don't care. They will help you when they have time … -
Replied To a Post in Frameworks Vs No Frameworks
> can i create my own framework Sure you can. It's just a collection of reusable components and some default business logic. Start small and let it grow slowly. Think … -
Replied To a Post in Final Year Project Topic and Development
> create that final year project idea generator Excellent project idea! (reminds me of [this](http://dack.com/web/bullshit.html)). -
Replied To a Post in MySQL insert problem
> other than autoincreement column That's why I asked what you do with the data, perhaps even the PK is not necessary. -
Replied To a Post in Error too many loops
Not here (Opera). -
Replied To a Post in New Section
Why don't you edit/update your career profile, and add a signature to your profile, stating "available for work". Although I could see a use for an "available for hire" option/list/thingamadoodle. -
Replied To a Post in check if username and ticket exist
That's your code, I meant the generated query (in `$sql`). If affected rows retuns zero, then it means that the SELECT part of your query does not return any results. … -
Replied To a Post in how to show 20 random results out of 80 questions
No. You fill the session array only when the first question is requested. So even if the session exists, returning to question one will generate a new set. -
Replied To a Post in how to show 20 random results out of 80 questions
http://php.net/manual/en/book.session.php Basicaly use `session_start();` and then fill `$_SESSION['questions']` with your 20 random questions. -
Replied To a Post in PHP Catchable fatal error: Object of class CS_REST_Wrapper_Result could no
`$cm_msg` is only a string in case of an error. When successful you get an object, so in that case you cannot use `. $cm_msg` -
Replied To a Post in Styling Echo in php
That's too vague. Show a complete working example (preferably online) and describe what you want, and what's not working. -
Replied To a Post in need help with c# screen scrape
What's the error, still the same? What kind of application or you building? Try `HttpClient` and see if that works. -
Replied To a Post in PHP Catchable fatal error: Object of class CS_REST_Wrapper_Result could no
What line is the error on? One of the functions is returning an object, yet you are trying to use it as a string. -
Replied To a Post in check if username and ticket exist
Then post the entire current query again. -
Replied To a Post in Styling Echo in php
You can by adding `style` but using a `class` would be nicer, so you can then address any styling via CSS. You can also just use CSS on the `a` … -
Replied To a Post in how to show 20 random results out of 80 questions
You send `question=1` to your script. That is an indication that you should select your 20 random questions (which your query does). You should only do that if you are … -
Replied To a Post in MySQL insert problem
Am not sure what you do with your records after inserting, but if you need speed, make sure you remove any foreign keys or indexes. Check if you even need … -
Replied To a Post in how to show 20 random results out of 80 questions
I don't see any code that does something with your mysql_query result, is this really all? -
Replied To a Post in Hi there
Welcome to DaniWeb. -
Replied To a Post in Required and Optional fields in WebService
> String was not recognized as a valid DateTime Can you show the Javascript code you are using to call this webservice? -
Replied To a Post in Retrieving values without duplicates
Show the code you have for retrieving your items. -
Replied To a Post in Book
An oldie on my bookshelf: Algorithms + Data Structures = Programs (Prentice-Hall Series in Automatic Computation) (1976) by Niklaus Wirth (Author) -
Replied To a Post in dynamically create and delete textboxes by button click and store in mysql
Can you be more specific? -
Replied To a Post in getElementById
Figured as much. The HTML does not get POSTed as a whole to your script, so there is no way to get what you want like that (unless you use … -
Replied To a Post in Echo certain value in multidimensional array
Can't you specify to get another class returned? If you can you could write your own class to handle that logic for you (just wondering). -
Replied To a Post in hello
Saving automatically requires Javascript. Is that what you want, saving when you leave a field? -
Replied To a Post in getElementById
What do you mean "input from the form itself"? That can't work as you are loading the HTML from a file. I have a feeling you want to do something … -
Replied To a Post in MySQL insert problem
What is the reason that you use DELETE/INSERT instead of UPDATE, are the rows that different? -
Replied To a Post in horizontal scretch
Width auto uses the (inherited) width of the parent container. Use the DOM/debugger tools to find which parent has a specific width set. -
Replied To a Post in getElementById
> When I call the nodeValue for the div it works but not for the input. What exactly does not work? The input with ID name does not have a … -
Replied To a Post in Database insert query not working
See here how to check for errors: https://www.daniweb.com/web-development/php/code/434480/using-phpmysqli-with-error-checking -
Replied To a Post in Introduction
Welcome to DaniWeb. -
Replied To a Post in new to pascal objects
> I don't know what went wrong with the formatting of my reply above It's probably caused by code inside a bulleted list, IIRC a known issue. -
Replied To a Post in Database insert query not working
> query is not working Last time. Post the failing query and the error message returned by mysql. -
Replied To a Post in Database insert query not working
> changed but still not working Unhelpful. At least post the failing query, and the new error message. -
Replied To a Post in Database insert query not working
`password` is a reserved word, use backticks. -
Replied To a Post in What makes a post qualify for down voting?
Also, check this feedback forums, there are a ton of threads about it. -
Replied To a Post in check if username and ticket exist
Username column in the where clause shouldn't have single quotes around it. -
Replied To a Post in Does anyone use Xamarin Framework?
What code are you using? You might be trying to use something specific that Xamarin can't use cross-platform. -
Replied To a Post in Self - Introduction
Welcome to DaniWeb. -
Replied To a Post in Building first MVC application
> Hope you understand? I do, I misread apparently. -
Replied To a Post in Building first MVC application
> you dont wanna be assigning allergies or operations to patients using their ids. Care to explain? Makes no sense to me. -
Replied To a Post in Building first MVC application
> So, would it be OK to remove public virtual Patient patient { get; set; } from PatientWeight? Looks like that would be the problem, so yes I think it … -
Replied To a Post in Post inexplicably marked as let-me-google-that-for-you
> Regardless, I've removed the tag. You could have too Are you sure? I can't. I can't just remove all tags and hit update, I have to enter at least … -
Edited how to insert string into mysql contains double backslash
$str="james//bond"; $str= mysqli_real_escape_string($con,$str); //insert query after successful insert in database it value shows as "james/bond" how I can insert exact string -
Replied To a Post in Add login and password to Web Service
Just add it to the ASMX file.
The End.