- 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
150 Posted Topics
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 | |
Re: I understand your reason for using AJAX to avoid refreshing however you must think about users that have JavaScript turned off also. Is the login functional when JavaScript is off? Could you not test if it's on and then use the refresh alternative if so? Just some thoughts, but in … ![]() | |
Re: hi Is this echoing out properly, or do you just need help with the javascript validation ? | |
Re: Wrong forum | |
Hey Im having a bit of trouble due to creating a media player playlist and using xml to input the directory variables to flash. I haven't really used xml much apart from that. Anyway... I need the variables from my XML file in a variable ready to print in php … | |
Hey I have an array which pulls in the name, artist and URL of songs from a playlist.xml file. The array prints like the following: [CODE]Array ( [0] => Array ( [tag] => PLAYLIST [value] => Array ( [0] => Array ( [tag] => SONG [value] => [attributes] => Array … | |
Hey I was wondering how you allow the user to highlight text they've typed (in a form) and click a button to edit its style (placing tags around the highlighted text). Could someone explain this a little further and perhaps provide an example. Thanks in advance. | |
Re: Im not really sure what your asking. Could you give an example of what you want stored. Thanks | |
Hello This isnt the right forum for this im sure however I cant find the correct one as its a vague question. Im sure someone in here knows the anser to it though. I've designed a countdown system in flash/php that rotates a wheel and stops on a certain object … | |
Re: hey Im 14 but i'v been learning for nearly 2 years now and im still going. I would say im a developer, i concentrate on the code rather than the actual designing of images ect. I'v done 7 websites now and i always have difficulty designing logo's and things like … | |
Hi I need an onHover effect for a blog. I would like it to look similar in design to daniwebs. (where you roll your mouse over the title and the box appears with the first few lines of text from the topic) Could anyone suggest some code for this ? … | |
Hi I know this topic isnt directly related to PHP however I understand many users in this forum may understand something further about this question. I have a webcam in a nightclub and I want to stream this live onto a webpage. This is probably very easy however i'd like … | |
Re: Hi To explain what slyme said above you will need to add an aditional field in your table containing your members information. Then whenever you echo the username simply echo the "priv" field that should hold either the text "admin" or "standard user". You should set the default value to … | |
Hi Lets say i have just sent a query to my database and its bought me back a value. I've stored this value in $value1 . How would i get this value into a flash movie ? Any help would be greatly appreciated. | |
Re: I can conclude, there is no spam sent. The videos are greats and have inspired me to keep my sites CSRF secure, cant wait for the rest! Thankyou | |
Re: Myspace and other such social networking communities are huge. Think about all the advertisments they have with phone companys, international football teams ect. It's quite stupid to ask for someone to teach you how to program something like myspace, and very silly to say you could market it better. Unless … | |
| |
Re: Hi Is this what your looking for? Obviously replacing the '####' with the column name of the data you want to repeat. If you want everything to be printed. Simply create a variable outside the while loop and then increment it after the process is done (just before the end … | |
Re: Definately alot of work. Keep daniweb updated with how you going and if you need any help. Oh and the above comment is true however by using the URL for this amount of elements it will become very large very quickly. I would recomend using AJAX, if you dont know … | |
Hi This may not be a php matter but i'm wondering if it can be done? 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 … | |
Re: So you want a simple form which when submited writes exactly: [QUOTE]type= name=---------------------------------------------------------------------------------------------- # type= name=(THE USERS INPUT) # type= name=---------------------------------------------------------------------------------------------- # [/QUOTE] To the textfile ? Is that correct and all you need help with ? |
The End.