-
Replied To a Post in Working with AllocSysString
`AllocSysString()` is not a method of `wchar_t`, but of `BSTR` IIRC. -
Edited How do i implement an entire php file into wordpress
Dear folks , I've already created some website from scratch with html and javascript , php etc. On the other hand i also created websites with wordpress. I find the … -
Replied To a Post in Daniweb Home Page Bug?
Think it has changed now. I don't see any unread buttons. Update: Now they're back. -
Replied To a Post in problem in inserting php insde javascript
<script type="application/javascript"> var eventData = [ { date:"<?php echo date('Y-m-d') ?>", badge:false, title:"Example 1" }, ]; $(document).ready(function () { $("#my-calendar").zabuto_calendar({ data: eventData }); }); </script> -
Replied To a Post in Hi Daniweb, Jeni new comer....!
Welcome to DaniWeb. -
Edited database connection
i did creat vb.net code for .aspx files, now i am looking for sql database connection for my project. exapmle: databasename: demo1 table_name: State user id: sa Password: 123 default.aspx … -
Replied To a Post in Daniweb Home Page Bug?
I remember asking this back in the old layout. Guess it hasn't changed since then. I do agree that it is confusing. -
Replied To a Post in How to divide a web page and styling it
> how to divide a web page Show an example of what you want to achieve first. -
Replied To a Post in PDO query is not inserting into dtabase?
Dump the values, run the query against the database manually with your values. Check for errors. -
Replied To a Post in Select certain records into another existing table
It might be better if you give sample data of what you have, and what you need it to be, instead of trying to explain with a query. -
Replied To a Post in Select certain records into another existing table
You mean something like this? UPDATE Codes SET Code = 783 WHERE cartId IN (SELECT cartId FROM Cart WHERE prodId = 10) -
Replied To a Post in bank management system in assembly language
Read [our rules](https://www.daniweb.com/community/rules) (which you agreed to when signing up), especially: *"Do provide evidence of having done some work yourself if posting questions from school or work assignments"* -
Replied To a Post in Am I Qualified Based Off BSc IS & Five Years Experience?
> I'll see what comes of it all and not worry about things that I can't control. That's the best way to get started. The theory of what you learn … -
Replied To a Post in adding two numbers with out using any arthematic operators
@Gourav_4: That looks like Javascript, not C. You are using the minus (arithmetic) operator, so the answer is invalid. -
Replied To a Post in error in connection when loged in session for other user
Replace line 10 with this: $query = mysql_query("select * from user WHERE user = ".$sId) or die(mysql_error()); and tell us what the error is. My guess is that `$sId` is … -
Replied To a Post in How do I echo table row and div in PHP?
echo '<tr>' . '<td style="text-align:left">' . '<div class="describe">' . $row['im_description'] . '</div>' . '</td>' . '</tr>'; That should work. If not, what exactly is the problem? -
Replied To a Post in Get count of returned rows
select count(*) from table1 as a, table2 as b, table2 as c where a.field1 = b.field1 -
Edited OOP ideas
Sorry in advance !! I have just finished learning OOP lessons in class, but my teacher he just provided the students a small exercise (class and object). Now, i really … -
Replied To a Post in php email template
> you just give me php code Show your efforts and we will help if you are stuck. DO NOT ask for code. Read [our rules](https://www.daniweb.com/community/rules) (which you agreed to … -
Replied To a Post in payroll calculation
I suggest a google search. If you want help, show your efforts. Read [our rules](https://www.daniweb.com/community/rules) (which you agreed to when signing up), especially: *"Do provide evidence of having done some … -
Replied To a Post in forgot password decryption
Just in case, [here](https://danielmiessler.com/study/encoding_encryption_hashing/) is a nice and short description of the difference between hashing and encryption. Learn the difference. -
Created HTTP status code 451
https://www.mnot.net/blog/2015/12/18/451 Wondering what everybody thinks about this. -
Edited Php vs Node
I am doing a start up and am figuring out my stack. I've been using php for around 5 years now and am extremely familiar with it. However, I've recently … -
Edited LightGallery uncaught error in line 414
Hi everyone i have this code setTimeout(function() { var hiddenimages = [],albumcover; albumcover = uploadSuccess.udest + imagesarray[0]; // for (var i = 0; i < imagesarray.length; i++) { imagepath = … -
Replied To a Post in Validating and submitting form field php
http://stackoverflow.com/questions/24007780/jquery-ajax-form-data-serialize-using-php Using jQuery's serialize to submit to PHP. -
Replied To a Post in blueimp gallery question
I'd have to look into this specifically. Not sure when I have time to create an example. Hope in the meantime someone else is able to help out. -
Replied To a Post in blueimp gallery question
Yes. The only thing the popup looks for are the links, they do not have to be visible. You can use the slide event to keep track of the currently … -
Replied To a Post in blueimp gallery question
I think if you add more hidden links like this one: <a class="thumbnail" href=" http://aburaga.com/assets/images/products/1430.jpg" title="88" data-gallery> in the right place, that the popup will the other images too. As … -
Replied To a Post in search and display data from database
Is there code missing in your post? Line 37 executes your query, but there is no code outputting any results. You need a similar while loop as on line 4 … -
Replied To a Post in check if email address is correct without sending email?
I **DO NOT RECOMMEND** using this code, especially in bulk. Chances are this is not supported, not permitted, blocked, and/or monitored. You (or your domain) is likely to be flagged … -
Replied To a Post in Upload and Display Image using PHP MySQL
What exactly is not working? Is the javascript code generated in the page source? Are there any entries/records in your table? If the javascript is generated, then it is before … -
Edited 3D Animation Studio
Hi, How to develop Mobiel app in html 5? which framework use for it? By Anaya, -
Replied To a Post in My apologies
> a handful of DaniWeb lurkers finding enough value in what they read to donate even a dollar That would be a handful of dollars. What amount do you need? … -
Replied To a Post in My apologies
> Do you think this is an effort a significant portion of the community could get behind? Doubtful. For someone donating there is usually a "what's in it for me". … -
Replied To a Post in SMTP mail error
> Password not accepted from server This should be pretty obvious. No idea what you are trying to connect to, because the link is broken, so post your code. -
Replied To a Post in Convert GPS Hardware Protocol Output to Google Maps API
I am not entirely sure what exactly you want to display on the map, because none of your screenshots show coordinates. -
Replied To a Post in Know user accessed menus
You can program this yourself by using Javascript to update some information server-side, or use something like Google Analytics. You still need to add the triggers, but you won't need … -
Replied To a Post in is there a better way to manipulate table using a combobox??
Since you check the select value against your table name, you could do a more general check and just insert the value into your query. BTW, your update queries will … -
Replied To a Post in MVC asp.NET trouble
When you say "can't insert/delete", are you getting exceptions? What is (or isn't) happening exactly? -
Edited Do I convert dbx files to eml ?
I have a old PC running XP using Outlook Express as there email program. With there new Windows 7 PC they downloaded Windows Live Mail. How do I import/export old … -
Replied To a Post in Cannot connect laptop to Internet via DSL
If that is so, then please post a bug report in the feedback forum. Add specifics so Dani can try to reproduce the issue. -
Replied To a Post in Send mail through php
So many examples online already, yet you cannot find a single one? -
Replied To a Post in I need help inserting data into MySQ database via PHP
> confused by the fact that it mixed connection with the query in the same file My snippet shows connection and query in the same file because it is an … -
Replied To a Post in Bug on frontpage
I think the main list is just a lil different and shows the name (or username if you didn't specify one) if you started the thread in question. The forum … -
Replied To a Post in I need help inserting data into MySQ database via PHP
Have a look at a [code snippet](https://www.daniweb.com/programming/web-development/code/434480/using-phpmysqli-with-error-checking) I made a while back. -
Replied To a Post in Front End combination
I think he is wondering whether or not that combination of tools will make his website blazingly fast. IMO using the right tools will help make your website fast, but … -
Marked Solved Status for Bug on frontpage
Please see attached screenshot. Both threads were started by Pavan_9 but somehow it is showing maverick2020. Or is this caused perhaps by a name change.  -
Replied To a Post in Bug on frontpage
Never noticed before. Non-issue then ;) -
Edited Bug on frontpage
Please see attached screenshot. Both threads were started by Pavan_9 but somehow it is showing maverick2020. Or is this caused perhaps by a name change.  -
Created Bug on frontpage
Please see attached screenshot. Both threads were started by Pavan_9 but somehow it is showing maverick2020. Or is this caused perhaps by a name change. 
The End.