84 Posted Topics

Member Avatar for jasmine_1234

If you've found exactly what you're looking for with that sourceforge script you mentioned, I can't imagine it would be too difficult to remove authentication from the page you need. If you do decide to go the route urtrivedi suggests and hire a developer, removing authentication from that script might …

Member Avatar for DJBirdi
0
162
Member Avatar for Bharadwajcvrg

Hmmm, this might need a little tinkering but it can be done. Take a look at this: [W3Schools - getUTCDate](http://www.w3schools.com/jsref/jsref_getutcday.asp) First, I would use that to get the current day, then compare the current day to an array to see how far from Friday that day is. The array could …

Member Avatar for DJBirdi
1
237
Member Avatar for developer707

str_pad is a good solution for this, however the code provided by catalinetu won't work because HTML truncates multiple spaces to one space unless you use non-breaking spaces with " " Now the problem with using   with str_pad is, as per PHP Manual: "Note: The pad_string may be truncated if …

Member Avatar for developer707
0
1K
Member Avatar for lloydsbackyard
Member Avatar for lloydsbackyard
0
123
Member Avatar for davnlou

Take your `<form>` tag out of the loop bud. Your initializing a new `form` with every item you add in the loop, but you're closing it only once outside the loop . Also, to help you further, show us your add-to-cart.php code.

Member Avatar for DJBirdi
0
343
Member Avatar for sribharath_1

You're asking for two different things bud. You don't want a "code" generator, you want a "markup" generator. Keep in mind however, that if you're going to go this route, it's best if this is a small project since markup generators will give you **A LOT (A LOT, A LOT …

Member Avatar for mesh457
0
149
Member Avatar for Raymond_4

Take a look at the HTML `loop` property. I believe that's what you're looking for. [W3Schools - DOM loop Property](http://www.w3schools.com/tags/av_prop_loop.asp)

Member Avatar for iConqueror
1
181
Member Avatar for DJBirdi

Out of curiousity, if any of you have ever done image watermarking with PHP, I'd love to hear some ideas. PHP's official documentation on watermarking with alpha channels isn't bad but I'm curious about the existence of other libraries that some of you might have used.

Member Avatar for DJBirdi
0
217
Member Avatar for david.roun.7

`session_start()` needs to be before any variable declarations/html. Try putting <?php session_start(); ?> at the top of the page, and delete your line 16.

Member Avatar for DJBirdi
0
320
Member Avatar for SimonIoa

Any specific errors? I believe `UNION` statement has a few very specific requirements. Off the top of my head, two of them are that the `SELECT` statements must have the same number of columns you're quering for, and those columns' data types must match. So instead of using `COUNT(*)` in …

Member Avatar for urtrivedi
0
146
Member Avatar for ekardh

Correct me if I'm wrong but wouldn't overlaying the text with a transparent image make all the text under it un-selectable?

Member Avatar for DJBirdi
0
201
Member Avatar for nadiam

Oh how I wish you had included the HTML as well, instead of me typing a mock table with input fields! :(

Member Avatar for nadiam
0
381
Member Avatar for DJBirdi

Uhhhh, so take a look at my profile. I apparently have one downvoted response but when I click on Posts Voted Down, I get "There are currently no matching articles available. Try back later." I know this is just nitpicking about small things but just wondering if this is a …

Member Avatar for DJBirdi
0
214
Member Avatar for yeeaki
Member Avatar for yeeaki
0
510
Member Avatar for iamthwee

Good lord it's about time! EllisLab made us wait forever for v3. To be honest though, I have a few large projects built on CI and I'm kinda afraid to upgrade because of all the horror stories I've heard about things breaking with framework upgrades. Once a stable version is …

Member Avatar for cereal
0
353
Member Avatar for davy_yg

lol @ "button" ... I had to check this thread out. Here ya go bud, I created a quick sample for you. This should get you started. Click the "Sign In" button and you'll see your container slide down, then go ahead and fill that container with a regular <form>. …

Member Avatar for tapananand
0
243
Member Avatar for showman13

Take a looksie at this: [jQuery Validation Plugin](http://jqueryvalidation.org/) I've used it in the past and it sounds like it meets your needs. Plus it takes care of the smaller issues that sometimes get over-looked such as firing the focus event on any field that was not validated.

Member Avatar for showman13
0
294
Member Avatar for Stein102

Hmmm! Because JS is not server-side, to accomplish this, I think at a very minimum you would need something like a browser plugin. Are you using any sort of scripting language in the back? If you are, you might want to search for...let's say Code39 barcode generators for that language …

Member Avatar for DJBirdi
0
255
Member Avatar for [NOPE]FOREVER
Member Avatar for rjusman90

Welcome to Daniweb rjusman90! Just a quick pointer. It's obvious you don't speak English well but please try to explain what you need in as much details as possible. We can all gather the bits and pieces to figure out what exactly you need help with. Your title and the …

Member Avatar for DJBirdi
0
149
Member Avatar for iamthwee

>Use: http://api.jquery.com/event.stoppropagation/ >It stops the event from "bubbling up". Perfect solution, but don't forget to pass "event" as the function's parameter. Won't work (in some browsers) otherwise. $(".dd-item").click(function(event){ alert($(this).find('.dd3-content').html()); alert($(this).find('.url').html()); event.stopPropagation(); });

Member Avatar for iamthwee
0
175
Member Avatar for EJL242000

The syntax is fine. I was able to create the table using the exact code above copied and pasted. Which versions of PHP and MySQL is the server running?

Member Avatar for cwarn23
0
444
Member Avatar for vishalonne

You can create another function that captures the value of the "5thsub" and then call that function in two different places. One right inside your SetSubject function to capture the value as soon as the field becomes active and the other with an onchange tag in the select statement to …

Member Avatar for DJBirdi
0
293
Member Avatar for navaidstech

You're using too many unnecessary variables bud. Since this is a simple code, the best approach would be to have just one function do all your dirty work (formatting 'n stuff), store what you need in session variables, and use those in the rest of your code. Here, try this …

Member Avatar for navaidstech
0
6K