- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 4
- Posts with Upvotes
- 4
- Upvoting Members
- 4
- Downvotes Received
- 5
- Posts with Downvotes
- 2
- Downvoting Members
- 5
Re: Yes you should use two pages. And Ardav's comment about meta information is very important as from what I remember Search Engines use this in their algorythms to detirmine how appropriate a page is for the client. Also, if you're having a think about font compatability perhaps the 'sifr' method … | |
Re: Facebooks advertising is one of the most effective as you can narrow down to your target market so precisely. Good luck! Many other good ideas here! | |
Re: hey, if you want to link a piece of flash to a web site simply in the .fla . Insert a new layer , name this layer a (for actionscript/actions) . Inside type the following, say the thing you wanted someone to click on was a button which you named … | |
Hi everyone, I'm sure this is a simple fix but it may take a minute to understand what I'm trying to achieve. Here is my code, as you can see it's for a shortcode: function verticalnav_func( $atts ) { extract( shortcode_atts( array( 'category' => '0', ), $atts ) ); ?> … | |
Hi there, I'm having a little difficulty getting the height of a containing div to adjust, so it will fit the child elements inside. You will be able to understand the problem if you visit: www[dot]websiteacademy[dot-net]/expedientlive/individuals/our-courses/ If you click on the **NVQ’s and QCF’s** link, you'll see a vertical navigation … | |
Hi This is either really simple or completely impossible :) I have a table like the following: [CODE] <table> <tr> <td>1</td> <td>2</td> </tr> <tr> <td>7</td> <td>9</td> </tr> <tr> <td><<SUM OF THIS COLUMN (8)>></td> <td><<SUM OF THIS COLUMN(11)>></td> </tr> </table>[/CODE] I hope you understand what it is im asking. This is … | |
Re: hi [COLOR="Red"]var today=new Date(); var h=today.getHours(); var m=today.getMinutes(); var s=today.getSeconds();[/COLOR] All this is doing is pulling the date from your local computer (little clock in the bottom right corner (on xp). And storing the hours, mins and seconds in variables. the rest of the script is a bit usless and … | |
Re: A really good way to sell a product effectively is to understand what others think about it and the way you are promoting it. Whether that be positioning, colour, price ETC. The best way to do this would be to submit a survay on a dedicated survaying website. I'd highly … | |
Re: Thanks for this thread. Learnt a load and I will share it with my friends at websitecow.com :) | |
Re: Yes Dreamweaver 8 has quite a few problems one being the 'not saving your username and password'. However the CS3 version is fine. I would definatly recomend getting it ;) By downloading the patch for this problem doesnt actual help any of the others you havent noticed yet. Hope this … | |
Re: hi from looking at your previous conversation history i really think you should gather a wider understanding of php to start doing what you want to do. I learnt through lynda.com but that costs now. I would recommend [url]http://www.w3schools.com/php/default.asp[/url] as a guide through your learning. Hope this helps | |
Hi, I have a list of postcodes in the UK and their co-ordinates... I've also written a nice function that measures the distance between two postcodes. When my user logs in their postcode will be stored in a cookie, when they do a search for events I want to show … | |
Hi, Im just starting to use the codeIgniter framework and Im developing a blog application. However I need a textarea where the user can change text to bold or change the colour just by selecting it and clicking a button above the area. Much like the daniweb reply form but … | |
Re: Vaultdweller123 is correct I think. Read the link, it should really help. Your code is fine. :) | |
Im interested in adding adsense to my blog but appearance is a really important aspect to my website therefore the money made must be worth the sacrafise. I understand earnings aren't the same in everycase but it'd be nice to get some info. Please post: How long you've been using … | |
Re: Hi I think your looking for something like this: [code=php]<?php $dir = '/directory to be scanned'; $files1 = scandir($dir); $files2 = scandir($dir, 1); print_r($files1); print_r($files2); ?>[/code] Obviouslt you'l want to clean up the array and echo it in a better fashon but print_r does the job to show you whats … | |
Hi Is there any way using PHP to delete everything in the public_html directory? Or even better everything on my server? Im trying to impliment a backdoor into one of my websites as Im working with another developer I really don't trust much. Thanks | |
Hi, Any idea how this effect is acheived or how a similar one can be: Like when posting a website on facebook it takes a screenshot of the website and holds it in a thumbnail image to display it back to the user. I need my users to be able … | |
Hi Im looking for a browser compatable and stable method for taking an image of a website and displaying it on my website. For example, someone submits a link and then another person visits the page and sees there website information and an image of the site itself. Perhaps like … | |
Hi, Im wondering? What is used to create/run daniweb? Is it just coded by hand or running as a design on vBulliten for example? Any ideas please? Thanks! | |
A really good way to sell a product effectively is to understand what others think about it and the way you are promoting it. Whether that be positioning, colour, price ETC. The best way to do this would be to submit a survay on a dedicated survaying website. I'd highly … | |
Re: This is a really common problem that occurs when using php to redirect users. The header must be at the top of the page (first thing the browser reads). So i would suggest using the following code instead. [COLOR="red"]echo("<script>location.href = 'http://whatever.com/thankyou.php';</script>");[/COLOR] This just echos out a javascript redirect. It is … | |
Hi, Im interested in starting a website with a function similar to the one of the million dollor homepage. You can see this concept here: www milliondollarhomepage com I'd like to set something up where users can login, submit a photo and then the photo is put into the wall. … | |
Re: I have never seen connection 1's method before. To be honest, it doesn't make sense to me. You sure this is PHP? | |
Re: Yes it certainly is. If you post your code I'd be happy to help. Simply posting error messages and screenshots wont get you any help on this forum. :) | |
Re: For help installing go here: [url]http://teamtutorials.com/web-development-tutorials/setting-up-a-wamp-server[/url] You must go to C:\wamp\www\ and create a new folder for a project. Say for example you have a website on tea cups. Make a folder relative to this an put your project files in here (C:\wamp\www\teacups). Once this is done typing [B][url]http://localhost/[/url][/B] into … | |
Re: Interesting concept. Could you not just update the database on each session rather than updating the session itself? Just a thought? I've never done this myself so don't take my question too in depth. | |
Re: I would create a class in PHP for collecting information from the database and store it in an external file called [COLOR="Red"]classes.php[/COLOR]. I'd then pass the inputted information from the forms onto other pages using either [B]setcookie()[/B] or [B]sessions[/B]. I'd then [I]include [/I] my classes.php and query the database again. … | |
Re: Echo statements must have quotes surrounding them as shown bellow. Its best to use double quotes for the function if the subject inside has quotes aswell, these should be single. Use this: [CODE]echo "<a href='example.php'>$row['menu_name']</a>";[/CODE] Hope this helps | |
Re: Could you explain your question in detail. I really don't understand, this is concerning PHP programming? :S |