-
Edited how to use nested views
hello all; <!DOCTYPE html> <!-- To change this license header, choose License Headers in Project Properties. To change this template file, choose Tools | Templates and open the template in … -
Replied To a Post in how to use nested views
Then I don't understand your question. Closed. Continued here: http://www.daniweb.com/web-development/php/threads/479426/want-nested-views -
Replied To a Post in datepicker
Set a default date, or use Javascript to check for an empty value on submit. I don't think that option is embedded in the datepicker. -
Replied To a Post in File Manager for Website
> A) a free one/opensouce one i can use use https://sourceforge.net/projects/dir-list/ -
Replied To a Post in how to add 'when touching mouse pointer' function
> Yes, the property is called Hint in Delphi but it is the same thing. Thanks. It's been a while... -
Replied To a Post in datepicker
> i have used jquery datepicker so im getting error What error message with what code? -
Replied To a Post in how to use nested views
You may want to take a look at the [FIND_IN_SET](http://dev.mysql.com/doc/refman/5.0/en/string-functions.html#function_find-in-set) function, assuming the column values are comma separated. IMO creating views for a basic query is overkill. -
Replied To a Post in how to add 'when touching mouse pointer' function
Check out the ToolTip property. That's what it's for. You enter a string, and on hover a tooltip will appear with that string. -
Edited Lack of Mobile Support
I travel with my tablet a lot (iPad 2nd Gen) and I'm often checking out the forum and posting when I can, but I've been getting sick of it because … -
Replied To a Post in Hello All Forum Members!!
Welcome to DaniWeb. -
Replied To a Post in Member's Photos
Latest creation:  -
Edited Hello! from India
Hi all, just joined daniweb and wanted to say hello. Hoping to learn new things and share some knowledge Namaste -
Replied To a Post in Hello! from India
Welcome to DaniWeb. -
Replied To a Post in Ion cude loader
Decrypt: no. Run it: yes. Although there are ways to decrypt it, that is illegal, don't go that way. Most web hosts have ion cube installed so it's possible to … -
Edited multiply two properties inside an object
there are two properties for my bike method.front gear and rear gear.i want another property which will be a new property called gear ratio property which can be obtained by … -
Replied To a Post in Update query not working with or without PDO
Try: query = "UPDATE `shellingdb` SET `likes` = `likes` + 1 WHERE `shell` = :shell AND `reporter` = :reporter"; Don't use single quotes when binding. The binding takes care of … -
Replied To a Post in populate drop down with default value
That's not very readable, but it looks like you are setting `selected` for every `<option>`, instead of just for the one that should be selected. -
Replied To a Post in Implementing ArrayList
http://www.dotnetperls.com/arraylist -
Replied To a Post in Bank program help
Line 25. `withdraw` returns the new balance, yet you do nothing with it. -
Replied To a Post in Find Tag Name Loop
Works for me, provided you change `write` to `alert` -
Replied To a Post in Ion cude loader
http://www.ioncube.com/faq.php Anything specific you need answered after reading the above? -
Replied To a Post in Look for missing Data
> how can i search a record with no In or no Out from the date range specified? If you group by employee number and date, the `COUNT(*)` should be … -
Replied To a Post in Upload an data in excel file using ASP.NET into MSSQL database
I don't see anything wrong with your connection string, but are you sure the path to the file is correct? -
Replied To a Post in Not so much an "Introduction"; more like a "Re-Introduction"
Welcome back. -
Replied To a Post in OSCLASS SMS ALERT
> I have purchased the sms api. Where's the documentation? What do you have so far? -
Replied To a Post in A distributed encrypted email system your take on it
Sounds like PGP. -
Replied To a Post in Need an idea for a program
Implement the [DaniWeb API](http://www.daniweb.com/api/home). -
Replied To a Post in Hello everyone!
Welcome to DaniWeb. -
Replied To a Post in Watermarking someone else's logo?
Get it in writing. Draw up a statement that you warned him of possible consequences, and that he takes responsibility if legal action occurs. -
Replied To a Post in display array values
In code? Then show your code. You'll need an `implode()` If you want to do this in your query, have a look at `GROUP_CONCAT()` -
Replied To a Post in MYSQL to MYSQLi
My example in the above link is fully functional. If you change that to be used with your database and table, do you get a result? -
Replied To a Post in SMTP server error: 5.7.1 Client was not authenticated
> Client was not authenticated You need to authenticate. Check [this example](http://phpmailer.worxware.com/index.php?pg=exampleasmtp). -
Replied To a Post in MYSQL to MYSQLi
http://www.php.net/manual/en/mysqli-result.fetch-field.php Try `print_r`, the fetch function return a StdObject. Check [this example](http://www.daniweb.com/web-development/php/code/434480/using-phpmysqli-with-error-checking) how you can check for errors. -
Replied To a Post in MYSQL to MYSQLi
Quote: **Alternatives to this function include:** - mysqli_data_seek() in conjunction with mysqli_field_seek() and **mysqli_fetch_field()** -
Edited Multiple Designing
Hello all, I am new into this webdesign industry. How to do website design so that my website contnet will show differnt in desktop and in mobile different ? This … -
Replied To a Post in Generate unique time between two given times
> if ($resolution instanceof DateInterval) Assumes you are passing an interval object, yet you are passing an integer. -
Replied To a Post in MYSQL to MYSQLi
> the link you provided is for MYSQL I know... read the warning. > The query is identical to the one that works? It's not, at least not in the … -
Replied To a Post in Generate unique time between two given times
That should be returned by your closure and subsequently echoed. Are you sure the closure does what you want? -
Replied To a Post in MYSQL to MYSQLi
You changed the query... it is no longer valid. http://us3.php.net/manual/en/function.mysql-result.php The warning in the link above shows you what you should use. -
Replied To a Post in Generate unique time between two given times
> echo $random = $randomTime($start, $end, 60); What if you leave out the assignment? echo $randomTime($start, $end, 60); -
Replied To a Post in Generate unique time between two given times
On what line is the error triggered? -
Replied To a Post in smarty modifier not working.
Hmz... Isn't this a variable modifier? So I think it should be like this: <a href="{$URL|prepare_link:http}"> and then in code you need: $tpl->assign('URL', 'index.php'); -
Replied To a Post in Mobile Phone to be used for programming
Any phone can be used for it, but different brands need different languages. Well, unless you use a cross-compiler like PhoneGap or Xamarin. -
Replied To a Post in smarty modifier not working.
Shouldn't that be: <a href="{index.php|prepare_link:http}"> Smarty V3? I assume your script is in the right folder. -
Replied To a Post in Connecting to MySql
http://www.codeproject.com/Articles/43438/Connect-C-to-MySQL -
Replied To a Post in php
You have to be more specific. -
Edited problem in flash transparent background by js
<script type="text/javascript"> var so = new SWFObject("wmode.swf", "wmode.swf", "550", "400", "8"); so.addParam("wmode", "transparent"); o.write("flash"); </script> <div id="flash">This is some flash content - you'll need the flash plugin to see it</div> -
Replied To a Post in problem in flash transparent background by js
So what's your problem? -
Replied To a Post in ASP.NET - how to run application on server?
Copying the source to the web root is not really useful. You should put your project somewhere else, and then use the Publish option in Visual Studio to build a … -
Replied To a Post in Connecting from a Windows CE to a MySQL Server
What's your language choice for the SOAP server? Would make finding a possible tutorial easier. http://msdn.microsoft.com/en-us/library/ms862153.aspx
The End.