516 Posted Topics

Member Avatar for cohen

That's funny, coming from YouTube. Especially since YouTube was built on copyright infringing material.

Member Avatar for MidiMagic
0
108
Member Avatar for vijaysoft1

Try this[code=php] <?php putenv("TZ=GMT"); $gmt= date("d-m-Y h:i A"); echo "<input type='text' value='$gmt' />"; ?> [/code]

Member Avatar for buddylee17
0
58
Member Avatar for abadi11
Member Avatar for ccube921
0
71
Member Avatar for cguan_77

You'll need some type of ftp (file transfer protocol) software. This will allow you to move your files from your local machine to the server that the site is hosted on. Most web editors like Dreamweaver and FrontPage already have ftp included. Otherwise, there are many free ones like Filezilla …

Member Avatar for cguan_77
0
83
Member Avatar for daviddoria

It's the nesting order of the elements. For instance: [code=css] p .red { color:red }[/code] would apply a style to elements nested in p tags with the class="red" like below: [code=html]<p>The following span is <span class="red">red</span></p>[/code] It would display as: The following span is [COLOR="Red"]red[/COLOR] Also, [code=css] .class1 p {color:green} …

Member Avatar for daviddoria
0
71
Member Avatar for php2sheik
Member Avatar for buddylee17
0
67
Member Avatar for daviddoria

li-list item; ul- unordered list; They are used to create a list in html. Read more at [url]http://www.w3schools.com/TAGS/tag_li.asp[/url]

Member Avatar for daviddoria
0
147
Member Avatar for OmniX

It's just a bunch of divs nested together with an external CSS file. You should be able to view the source code and see how it is done. You'll also want to look at the css file to see how the elements have been styled. It's all there.

Member Avatar for ccube921
0
92
Member Avatar for daviddoria

I'm sure there is similar open source software to Flash but it will probably not have near the capabilities. You could try to run Flash on Linux through [URL="http://www.winehq.org/"]WINE[/URL].

Member Avatar for Walkere
0
130
Member Avatar for hbmarar

Yes, it will require some client side JavaScript, but not much: [code=html]<input type="button" value="Play" onclick="this.value='Playing...'" />[/code] Is this what you were needing?

Member Avatar for buddylee17
0
106
Member Avatar for Kavitha Butchi

Just do this if you want to assign it to the body: [code=php]<style type="text/css"> body{ background-image:url('<?php echo $profpic ;?>'); } </style>[/code] Note: This should go in the head of the document.

Member Avatar for Kavitha Butchi
0
2K
Member Avatar for duhasteme

Your links contain two forward slashes instead of one ie:.com// instead of .com/

Member Avatar for martin5211
0
88
Member Avatar for Brainsmith

The html on the page has been put together poorly. JavaScript before the doctype... Validate a page with [URL="http://validator.w3.org/check?uri=http%3A%2F%2Fwww.nhrmc.org%2Fbody.cfm%3Fid%3D2890&charset=(detect+automatically)&doctype=Inline&group=0"]W3C[/URL] and see for yourself. The page mentioned contains 147 errors. You can't expect this site to work consistently in all browsers. Either mandate IE7 as the required browser or contact the …

Member Avatar for danarashad
0
167
Member Avatar for addsf1

When using heredoc, you must open and close the variable with the same identifier. [code=php]$body = <<<em <br><hr><br> name: $name <br> surname: $surname <br> email: $email <br> telephone: $telephone <br> comments: $comments <br> EOD;[/code] should be: [code=php] $body = <<<EOD <br><hr><br> name: $name <br> surname: $surname <br> email: $email <br> …

Member Avatar for peter_budo
0
148
Member Avatar for lacompsr

You could just reduce width and height like suggested, however the client will still have to download the full sized image into the cache then resize it. Users are impatient and if the images are more than a couple 100kb, they may just leave before the pics are finished downloading. …

Member Avatar for MidiMagic
0
91
Member Avatar for CodeMama

Just use > instead of GREATER THAN. Since xCount is numeric, you also won't need quotes around it. So I think: [code=php]$sql = "SELECT * FROM `textads` WHERE `expos` > xCount ORDER BY RAND() LIMIT 3"; [/code] should work.

Member Avatar for CodeMama
1
132
Member Avatar for Dick Kennedy

Are you getting a "Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by" warning at the beginning of the script? If so you may have BOM characters added to the script. Some WYSIWYG editors will add extra BOM characters before the beginning of the script causing an …

Member Avatar for Dick Kennedy
0
118
Member Avatar for sayaan
Member Avatar for Nick Evan
Member Avatar for Ryugen

Read [URL="http://www.search-this.com/2007/03/12/no-margin-for-error/"]No Margin For Error[/URL]. Also, if you'll download the Firefox [URL="https://addons.mozilla.org/en-US/firefox/addon/60"]Web Developer[/URL] addon, it will allow you to outline elements and you can compare the outline to where you think the element should be.

Member Avatar for MidiMagic
0
116
Member Avatar for rajeesh_rsn

Are you referring to [URL="http://www.google.com/search?q=captcha+php"]Captcha[/URL]? You should be able to find quite a few scripts to do what you need in the link.

Member Avatar for buddylee17
0
57
Member Avatar for aagaeta

Don't use a submit button. Use input type ="button" and use a javascript onclick event to trigger the script. Also, to run a script on the server, you'll need to look into AJAX.

Member Avatar for buddylee17
0
56
Member Avatar for sillyboy

You could use JavaScript to detect the user agent then write a link prefix variable for each link. A much better solution would be to install a testing server (WAMP, XAMPP, IIS) on your machine. This way you can access your site by typing [url]http://localhost[/url] into the url instead of …

Member Avatar for sillyboy
0
161
Member Avatar for glecymay

Enter your question in the [URL="http://www.daniweb.com/forums/forum8.html"]C++[/URL] forum. This forum is for HTML and CSS only.

Member Avatar for buddylee17
0
59
Member Avatar for arunmagar
Member Avatar for terrymodular
0
118
Member Avatar for AndyTT75

Yes. Use absolute positioning and set bottom attribute to 20px. [code=css] position:absolute; bottom:20px; [/code]

Member Avatar for buddylee17
0
67
Member Avatar for rulebreaker

Validate the page with the [URL="http://validator.w3.org/"]W3C[/URL]. I'm sure you'll find several errors.

Member Avatar for MidiMagic
0
201
Member Avatar for Sheridan

In the form element, add the attribute target="_top". [code=html]<form action="process.php" target="_top">[/code] Have a look at all of the possible target values: [url]http://www.w3schools.com/TAGS/att_form_target.asp[/url]

Member Avatar for Sheridan
0
93
Member Avatar for Diode

I use the [URL="http://www.phpclasses.org/browse/file/919.html"]class.phpmailer.php[/URL]. It will add all the headers for you and will work for both plain text and html email. It works for hotmail, yahoo, gmail, and many others.

Member Avatar for ithelp
0
139
Member Avatar for stymied2

You have to understand that each browser sets a certain amount of white space between each element. Please read [URL="http://www.search-this.com/2007/03/12/no-margin-for-error/"]no margin for error[/URL]. You'll have to reassign the problem elements to have 0 margin and padding. Also remember that 0px = 0 pizzas = 0 cigarettes. 0=0, regardless of what …

Member Avatar for MidiMagic
0
332
Member Avatar for infotechland
Member Avatar for kained

This may or may not be the problem, but it is not valid: [code=html] <img src="images/gdc1.jpg" alt="Garden Design Company" width="300" height="185" float="right" />[/code] should be: [code=html]<img src="images/gdc1.jpg" alt="Garden Design Company" width="300" height="185" style="float:right" />[/code]

Member Avatar for buddylee17
0
137
Member Avatar for gpdrums

Keep the table element out of the loop. As long as <table> and </table> aren't being repeated in the loop, your not going to have multiple tables.

Member Avatar for TopDogger
0
146
Member Avatar for enzogoy
Member Avatar for lotpb

If you are wanting the area code to enter into the textbox after a click, use the onclick event (JavaScript).

Member Avatar for lotpb
0
78
Member Avatar for througheye

Think of a class as a class in school. The class contains many students. Think of id as a unique student in the class. Use a class when you have many elements that need the same style applied. Use an id when the element will only be used once on …

Member Avatar for wickedsunny
0
66
Member Avatar for serkan sendur

Download xampp or wamp. They are free, small downloads, that require no to minimum configuration changes. Here's a comparison of the two from oracle.com: [url]http://www.oracle.com/technology/pub/columns/hull_php2.html[/url]

Member Avatar for PoA
0
146
Member Avatar for Grasshopper_

What does this have to do with php? You have no php in your code at all. You might want to consider adding it in though. No form should be submitted without server side validation. Using JavaScript for validation is kind of like putting a plastic lock on your door.

Member Avatar for buddylee17
0
117
Member Avatar for kkarimi

Hotmail will scramble anything that is surrounded by quotes in html, so remove all single and double quotes from the email. In other words: [code=html]<a href="http://www.google.com">[/code] would need to be [code=html]<a href=http://www.google.com>[/code]

Member Avatar for buddylee17
0
242
Member Avatar for sos4seo

I don't see it either. What I would do though: Scale down the header or just get rid of it. It takes up over half the page! Also, maybe a white background. Just my opinion

Member Avatar for MidiMagic
0
133
Member Avatar for chicago1985

I do both, and can tell you first hand that the tiny amount of time you save in development is going to be a very small drop in the bucket compared to the overhead costs of licensing and setting up a cf supported server. Yes, cf has many built in …

Member Avatar for PoA
0
170
Member Avatar for Jean Gwyneth

[QUOTE]I dont know anything about SQL server and so I am afraid all my pages and connections to database would be totally messed up or ruined.[/QUOTE] Make a backup! (Copy, paste, rename "backup.mdb") As far as the migration goes, use the [URL="http://support.microsoft.com/default.aspx/kb/237980"]Microsoft Upsizing Wizard[/URL] or [URL="http://www.microsoft.com/sql/solutions/migration/access/default.mspx"]SQL Server Migration for Access[/URL] …

Member Avatar for buddylee17
0
119
Member Avatar for jeffrey16

Not a big fan of [URL="http://www.google.com/search?q=download+microsoft+expression+web+2&btnG=Search"]google[/URL] I take it. Just a wild guess, [url]http://www.microsoft.com/expression/[/url] Also, if you are currently a student in college, you can download a fully licensed copy free from [URL="https://downloads.channel8.msdn.com/"]dreamspark[/URL] site.

Member Avatar for buddylee17
0
57
Member Avatar for threebluIdboys
Member Avatar for maydhyam

Could be wrong but I think this will require some type of middleware like PHP to communicate between them.

Member Avatar for maydhyam
0
87
Member Avatar for bimaljr

Michael Kofler wrote a VBA module that will do this. You'll need Excel, Word, or a MS program that can run VBA. [URL="http://www.kofler.cc/mysql/mssql2mysql.txt"]Here[/URL] is the script with commented instructions on how to use and what variables to change. I've never used this but it looks like a very good, simple …

Member Avatar for bimaljr
0
163
Member Avatar for ike185

If you'll add an index file to the folder, the directory files wont be listed. Obviously this is a short term solution to the problem. The better, long term solution, was already made by Xan.

Member Avatar for ike185
0
148
Member Avatar for pbpyrojust

Whether or not the background image is printed is up to the browser, nothing you can do with code. It's a setting in the browser which decides whether or not to send background images to the printer. In IE7, click Tools->Internet Options->Advanced. Click the check box under Printing for print …

Member Avatar for FlashCreations
0
101
Member Avatar for sri28

[url]www.w3schools.com[/url] will hold your hand through every step. By the time you're done there, you won't need any of the other links mentioned.

Member Avatar for peter_budo
0
481
Member Avatar for Reliable

After the body tag, throw in [icode]<a name="top"></a>[/icode] [code=html] <body style="background-color:#4b2600;" onload="MM_preloadImages('images/home_over.gif','images/our-cakes_over.gif','images/Gourmet-Gifts_over.gif','images/Order_over.gif','images/Wholesale_over.gif','images/faq_over.jpg')"> <a name="top"></a> [/code]

Member Avatar for jb1ker
0
103

The End.