8,966 Posted Topics

Member Avatar for ankit.baphna

You'll need Javascript/jQuery to achieve what you need IMO. Am I right, that if you click the link you want to prefill a textbox with "furniture"?

Member Avatar for pixelsoul
0
257
Member Avatar for AntonyRayan

That's only possible if your excel files contain a unique column (or combination of columns) so you can identify the already inserted rows.

Member Avatar for AntonyRayan
0
138
Member Avatar for pritaeas

http://www.humanstxt.org I came across this by chance. Do any of you guys/gals use it? I like the fact that you can thank the people who helped, however small the contribution, in a semi-standard way.

Member Avatar for pixelsoul
0
236
Member Avatar for manaila
Member Avatar for Deep Modi
Member Avatar for bazetwo
Member Avatar for Foday_1

Please tone down. [Our rules](https://www.daniweb.com/community/rules) clearly state that you should show your effort, which is clearly lacking in your OP. Show YOUR code, and clearly explain what parts you are having difficulty with.

Member Avatar for HiHe
-1
244
Member Avatar for showman13
Member Avatar for showman13
0
134
Member Avatar for jackparsana

Read this [url=http://symphony-of-dot-net.blogspot.com/2010/03/making-css-custom-font-works-with-ie.html]blog-post[/url] too.

Member Avatar for Samuccaya
0
417
Member Avatar for pritaeas

Just thought I should share: https://vivaldi.com Tech preview is out, so far I'm pretty impressed.

Member Avatar for iamthwee
2
261
Member Avatar for gara_mirza
Member Avatar for ojejones

An RSS feed is not meant to contain so many items, but to display just the latest/changed ones. If you still want to convert this XML, I suggest you use an XSLT transformation from the sitemap to the feed. You still need to know coding, so I suggest you DO …

Member Avatar for Stacey_1
0
337
Member Avatar for matrixdevuk
Member Avatar for Jon94

WordPress is written in PHP, so it sounds like he either has a CMS of his own (which is good), or he's trying to complicate things to get more money (if he builds one from scratch, which is bad). I'd try to get a written statement from him what exactly …

Member Avatar for almostbob
0
224
Member Avatar for AntonyRayan

http://php.net/manual/en/function.mysql-affected-rows.php If it returns zero, nothing was changed.

Member Avatar for pixelsoul
0
191
Member Avatar for Taz098

Perhaps you can use the [Community Edition](http://www.visualstudio.com/products/visual-studio-community-vs). It has InstallShield Express limited, but I haven't used it yet.

Member Avatar for pritaeas
0
115
Member Avatar for PinoyDev
Member Avatar for Stefce

> Here is the whole script I don't see a database connect. Where is `$conn` instantiated? Echo out `$sql` and post it here.

Member Avatar for broj1
0
221
Member Avatar for Violet_82

> hookup = new SqlConnection( > "Server=localhost\\SqlExpress;Database=tests" + > "Integrated Security=True"); Isn't that missing a semi-colon (after tests)?

Member Avatar for Violet_82
0
3K
Member Avatar for Stefce
Member Avatar for Ana_2
Member Avatar for Violet_82

From (found in your linked URL): [https://msdn.microsoft.com/en-us/library/8kb3ddd4(v=vs.110).aspx#UsingSingleSpecifiers](https://msdn.microsoft.com/en-us/library/8kb3ddd4(v=vs.110).aspx#UsingSingleSpecifiers) **Using Single Custom Format Specifiers** *"To use any of the custom date and time format specifiers as the only specifier in a format string (that is, to use the "d", "f", "F", "g", "h", "H", "K", "m", "M", "s", "t", "y", "z", ":", …

Member Avatar for Violet_82
0
305
Member Avatar for wplanders
Member Avatar for sachin.sonawane3
Member Avatar for AwaisAhmed88

It can only be made generic if the API's don't differ too much. I am not sure (but I doubt) if that's the case with the forums you mentioned.

Member Avatar for faheemsial
0
155
Member Avatar for codewall
Member Avatar for sandeepgkumar
Member Avatar for Jack_11

http://dev.mysql.com/doc/index-topic.html What do you want to learn? Most book are on specific topics, e.g. administering or query language.

Member Avatar for 1stDAN
0
115
Member Avatar for James E

Am pretty sure that when you start learning ASP.NET MVC5 the Javascript/jQuery interaction will become clear soon enough. I found [this introduction](http://www.asp.net/mvc/overview/getting-started/introduction/getting-started) to be very helpful.

Member Avatar for James E
0
164
Member Avatar for Marz_1
Member Avatar for PerpyProgrammer

Did you read the two forum stickies? https://www.daniweb.com/software-development/csharp/threads/437362/getting-started-with-c-the-list https://www.daniweb.com/software-development/csharp/threads/448647/new-programmers-what-resources-are-available-to-you

Member Avatar for abhiT123
-2
196
Member Avatar for davy_yg

Your hidden submit does not have a value, so by default that is an empty string, which evaluates to false.

Member Avatar for pritaeas
0
120
Member Avatar for Mister17

> Question is what is the appropriate language to do a movie database? Depends on your requirements. There is no best one language, it can be done in all of them.

Member Avatar for JamesCherrill
0
238
Member Avatar for grakovski

$result = preg_replace( '%<a href="(?!http://mysite\.com)(.*?)" class="postlink">%', '<a href="$1" class="postlink" rel="nofollow">', $subject);

Member Avatar for grakovski
0
438
Member Avatar for rameshrock

Search this forum for pagination, a lot of threads are already here about the subject.

Member Avatar for rubberman
0
98
Member Avatar for muralibobby2015

Usually get parameters are added to identify such links, but of course this only works if the link points to a domain you own/control. You cannot track a direct link to Google, so the only way would be to route it through your server first. This might be considered phishing.

Member Avatar for pritaeas
0
374
Member Avatar for vgxp

http://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlcommand.executescalar%28v=vs.110%29.aspx I quote: *"The first column of the first row in the result set, or a null reference (Nothing in Visual Basic) if the result set is empty. **Returns a maximum of 2033 characters**."* Perhaps it's not returning the full image stream.

Member Avatar for Mr.M
0
2K
Member Avatar for yssirhc

> No set method for property 'computer' in type 'Scanner.BarcodeScanner+ScannedItem'. The class cannot be deserialized. You cannot deserialize a string if it doesn't have a setter. You are sending a string, but the receiving end cannot store the value in your class property. In short, add a setter.

Member Avatar for yssirhc
0
462
Member Avatar for sarahtylor
Member Avatar for jean_5

> And the result of the query in database is this This is directly on the database? You need a script language in between to query the database and pass the results to javascript.

Member Avatar for jean_5
0
326
Member Avatar for Stefce

Line 4 in login.php stores an array (a result row) in your session variable. I think it should be something like this: $row = mysqli_fetch_row($result); $_SESSION['user_id'] = $row['user_id']; // you only want to store the user id, so change it to the right column name.

Member Avatar for Stefce
0
222
Member Avatar for Ahmed_39

Can't you use an interface (or a superclass) on both category classes? In either case, you can use one `IEnumerable<ICategory>` for both. As far as I can tell, both classes are using the same properties so generalizing your nested list can solve your issue.

Member Avatar for pritaeas
0
692
Member Avatar for solomon_13000

> However I intend to do so without installing the SDK into my 3rd party web server. What is the best way to achieve this?. Basically you'd have to implement the functionality of the SDK (implement the OAuth flow).

Member Avatar for pritaeas
0
102
Member Avatar for tgp_28
Member Avatar for mf24k

A barcode scanner (keyboard wedge)? For example: http://www.barcodesinc.com/cats/barcode-scanners/ps2.htm

Member Avatar for jhao1205
0
83
Member Avatar for Ahmad Imran
Member Avatar for PerpyProgrammer

https://www.daniweb.com/community-center/daniweb-community-feedback/threads/440621/requirements-of-becoming-a-mod

Member Avatar for happygeek
-1
112
Member Avatar for Jack_11

> Using the same IP address was bit of as give-away. So was using the same name in your profile :)

Member Avatar for happygeek
0
426
Member Avatar for PerpyProgrammer
Member Avatar for jonadi

The End.