-
Replied To a Post in hello to all
Welcome to DaniWeb. -
Replied To a Post in Contact Us does not work
Have you tried to send an email with hard-coded values? -
Replied To a Post in 'group_id' in where clause is ambiguous
<button type="button" onClick="parent.location='invoice_edit.php?group_id=<?php echo $_GET['group_id'];?>"'\"">Add Invoice</button><br><br> -
Replied To a Post in Contact Us does not work
Instead of `return true;` you have to show your OK message. Replace `return false;` with a failed message. -
Replied To a Post in update password into md5
Both PHP and MySQL have md5() functions. What exactly is the problem? -
Replied To a Post in Contact Us does not work
I meant that `mail()` returns `true` if the mail is successfully queued. Check that value first. -
Replied To a Post in 'group_id' in where clause is ambiguous
Maybe because your quotes are off. -
Replied To a Post in Chatbot with mood detection via Face Recognition
KeyLemon has a developer API, so you might want to look into that, check if it provides what you need. Although Program-O has a chatbot, you still need a way … -
Replied To a Post in Contact Us does not work
> The message that is appears That message will be shown every time, whether or not `mail()` returns true or false. -
Edited Copying Data from Access to MySQL
i want the procedure to export .mdb file to sql file move file to server using ftp and import into mysql database using a batch file. -
Replied To a Post in Upload photos
> they cant be uploaded while the other jpeg photos are able too Are they perhaps bigger than the ones that aren't uploading? -
Replied To a Post in Optimizing SQL Query
> such as changing the use of all CASE statements and things like this. Like the sample above, just try to find repeated code and eliminate it. -
Replied To a Post in Add a New Shortcut to Post
Am sure Dani will get back to you on that. Give it some time. -
Replied To a Post in Attendance management source code
Did you try to find one with a search engine? -
Replied To a Post in containing an element into a div
Have you tried CSS? `float: left;` should do it. -
Replied To a Post in Optimizing SQL Query
Looks like a block like this: CASE WHEN @Unit_Code > 0 THEN ((ISNULL(dbo.GetItemPrice(IUD.UnitData_ID,@ItemPriceID),0))) ELSE ( case when @Unit_Type = 1 then ((ISNULL(dbo.GetItemPrice(IUD.UnitData_ID,@ItemPriceID),0))) else ((ISNULL(dbo.GetItemPrice(IUD.UnitData_ID,@ItemPriceID),0)) / ISNULL((1/LargeUnit_UnitData.UnitData_FinalFactor),1)) end ) END) Can … -
Replied To a Post in Math mysql
Without seeing your data, this is impossible to answer. -
Replied To a Post in displaying blank page
tldr; Turn on error reporting and/or check the error_log. -
Edited SEO
What is SEO service? And how it is very useful for the customer? Please give me some ideas to rank well in Google by doing seo? -
Replied To a Post in Hi i m nicole north from texas
Welcome to DaniWeb. -
Replied To a Post in pass stdClass object to javascript object
Not by default. If you use a class that implements JsonSerializable then you can make it work. -
Edited Need help with jquery masonry, its loading oddly
Hello, Currently on my site the jquery masonry is loading quite oddly, it loads all the images first then it sorts itself into position. i want it to load just … -
Replied To a Post in PHP or ASP.net
> you can host it in a cheap web server compare to ASP.NET which is very expensive The price difference is no longer a reason, it has dropped to (almost) … -
Replied To a Post in How to call a stored procedure in an SQL file?
If your stored proc returns a single value, you can just use it in your insert query. INSERT INTO table (yourcolumn) VALUES (yourstoredproc()) -
Replied To a Post in 'group_id' in where clause is ambiguous
> What 'group_id' are you talking about in the where clause It doesn't matter in this case, because it is the join column. -
Replied To a Post in Chars and Ascii table
No. The modulus operator is zero based. It will return a value between 0 and the one you specify (exclusive). So if you do `% 122` it will return a … -
Replied To a Post in Chars and Ascii table
Assume a to be 0, z 25. That would be your index. You can then add 97 to get the character you need. In pseudo: index = char - 97 … -
Replied To a Post in Chars and Ascii table
You can use the modulo operator `%` to loop. Look it up, if you have problems post back. -
Replied To a Post in 'group_id' in where clause is ambiguous
Both tables have a `group_id`. Specify any one of them. -
Replied To a Post in [jQuery] Checkbox enabling and disabling
Find the checkbox's parent row (`.closest('tr')`), then use that node to find all it's checkbox children. -
Replied To a Post in Semantic Web
No, I don't. Aren't both just XML files? If so, any XML tool could help you. -
Replied To a Post in vb 6.0 textbox to excel 2007
If you debug, does `oWB` have a value? -
Edited vb 6.0 textbox to excel 2007
Hi im just a new here and Im hoping that you can help me. Im having a problem in my project and I cant find any solution in the internet … -
Replied To a Post in What should I learn oracle 10g or 11g ?Is oracle 10g outdated now?
Am sure Oracle has developer tools. Did you check their website? -
Replied To a Post in need help to convert script to a multiupload
> The website I'm working on requires the ability to upload multiple files at the same time, can anyone please help me convert this file to be able to support … -
Replied To a Post in [jQuery] Checkbox enabling and disabling
> Should I assign each checkbox a class and then work with that? Yes, that is usually the best option. -
Replied To a Post in Create front end search of SQL database
Am pretty sure SharePoint is capable of having a form connected to a database. There must be something in the documentation. -
Replied To a Post in Semantic Web
Can you be a little more specific? -
Replied To a Post in Paginate
There are a lot of PHP threads about pagination already. If you do a search, you'll sure to find one that can put you on the right track. -
Edited site.master file question
Hello I am trying to make an alteration to the CSS behind the site.master file. I have the following in my site.master code: <div class="navbar navbar-inverse navbar-fixed-top"> <div class="container"> <div … -
Replied To a Post in site.master file question
Closed. Continue here: https://www.daniweb.com/web-development/aspnet/threads/484924/changing-bootstrap.css -
Replied To a Post in buttons not responding on click
> I tried to use jquery to do something but nothing happens Did you include the link to the jQuery script? -
Replied To a Post in how to substring in php without breaking a word
Use a loop. Start at the maximum length of your string. Check if it's a space (or non-word char). If it's not, go back one position and check again. Stop … -
Marked Solved Status for div with margin
i am create html page in that i have to two div inside other My issue is one div is for container and other for header i made the margin … -
Replied To a Post in jQuery: find the first blank textbox
This should work: $("input[value='']:visible:first"); The visible is just there to skip any hidden fields. -
Replied To a Post in Threading advice
Have you looked into [Tasks](http://msdn.microsoft.com/en-us/library/dd537609(v=vs.110).aspx) yet? -
Edited test
Test void try() { cout << test; } -
Replied To a Post in test
Closed. It is titled/marked test, and somehow wasn't deleted earlier. -
Edited excel show remaining days
what did I've done wrong with this code? =IF(OR(ISBLANK(C9),ISBLANK(B9)),"",IF(ISBLANK(C9),D9-TODAY(), "Reactivated")) I want to make an event that if b9 and c9 is empty, the value would be empty. if only … -
Edited How to upload Multiple files into the database
<form action = "uploadFile.php" method= "POST" enctype = "multipart/form-data"> <input type = "file" name = "file[]"><br><br> <input type = "file" name = "file[]"><br><br> <input type = "submit" value = "Submit"> …
The End.