236 Posted Topics
Re: I voted yes, but I really don't have a strong opinion one way or another. [j-k] With my luck I would find that all the people living near me would hate me lol [/j-k] | |
Re: Just for kicks try searching yahoo or msn. Their results are not so geared towards backlinks and since the 2.0 modrewrite version (if it exists) is newer it won't have as many backlinks. | |
Re: You will want to add: DirectoryIndex to the .htaccess file for each directory. There may be another way to do this, but this should work. So for example: In the directory: phd/ add this line to your .htaccess: DirectoryIndex phd.html | |
Re: You mean that you want to create a web page to do this? You can see how to create a dropdown box [URL=http://www.w3schools.com/html/tryit.asp?filename=tryhtml_select2]here[/URL] | |
Re: Why don't you go to the site of the creators of the software? You can try the [URL=http://www.phpbb.com/support/tutorials/display.php?t=phpbb2_admin_install]tutorial[/URL]. | |
Re: If you really want help you should post your code, or at least the portion you feel is causing the problem. Offhand it sounds like the zip file on the server has gotten corrupted somehow. | |
Re: I think he is saying he is using other peoples accounts to advertise so he doesn't have to pay. Sounds illegal to me... | |
Re: Try it this way. Added / on very last line. [CODE]<!ENTITY % ft7777 SYSTEM "http://www.alcides.net/newsite/dtd/ft7777.dtd"> %ft7777; ] />[/CODE] | |
Re: Try wrapping your code in code tags.... | |
Re: Change: Redirect /google.html [url]http://www.google.com[/url] to: Redirect /Rewrite_Tester [url]http://www.google.com[/url] or it may need to be: Redirect /Rewrite_Tester/ [url]http://www.google.com[/url] depending on your apache installation. It looks like Redirect only accepts paths and not file names. You also realize that Redirect is mod_alias yes? | |
Re: There is a little bit of delay from when you make your 10th post to when you can actually add the signature (not sure why). So if you view your control panel now you should able to see where to add your sig. If not today then definitley by tomorrow | |
Re: Your question is very vague. Are you talking about styling or about data retrieval? If styling then yes. For data retrieval you will need some kind of scripting language involved. | |
Re: One way to do it would be to make an animated gif as the mouseover image. I could make gifs for you if there aren't too many of them. Just be sure of the size though, wouldn't want to do it twice :) | |
Re: In the short time that I have been here (less than a week) I have seen your posts sooo many times. Seeing you here so much has helped to keep me coming back. Not only that but you are always friendly, informative, and [B]encouraging more discussion[/B]. To me that is … | |
Re: Hmm never used this so..... (im not sure) go to Slide Show choose Online Broadcast choose Record and Save a Broadcast Like I said I've never used Powerpoint so I'm not sure. | |
Re: Are you using a scripting language to send the query? Like php or asp? If so you will need to post the code you are using to submit the query. | |
Re: I wouldn't use frames at all if possible. You can use PHP or Javascript to do this. Javascript: +you don't have to reload the page +probably faster -must upload all pics at once (i think..) -possible browser support issues(not likely tho) PHP: +better browser support (browser sees nothing but html) … | |
Re: There is a pretty good tutorial [URL=http://www.sitepoint.com/article/guide-url-rewriting]here[/URL]. There is also a tutorial here on Daniweb at [URL=http://www.daniweb.com/tutorials/tutorial12725.html]this link[/URL] that deals with rewriting for vbulletin. I haven't read the tutorial here on Daniweb, but I'm sure there are lots of questions and answers that may be helpful as it is a … | |
Re: The founder coded most of the backend herself. I'm sure she would sell you a version of it for the right price. | |
Re: Well this line will definitly cause you some problems: $newcount = mysql_query ("SELECT | |
Re: Ok. The problem comes when you use ' inside your statement with ' on the outside. So something like this is not good: echo 'some text 'more text' and more text'; PHP expects 'more text' to be some kind of variable or operator. I think you will need to use … | |
Re: Yes Internet Explorer supports Javascript. What type of application are you trying to develop? | |
Re: Put it in the body tag: [HTML]body { text-align: center; margin: 0px; background: transparent url(http://www.thadallender.com/blog/images/bg_slim.gif) repeat-y 100%; }[/HTML] | |
Re: You may have to change the ownership of the dir or file or just make it 0777. | |
Re: Funny thing. Semi related to this. If you type in the keywords I set my site up for, I don't show up on Google, but daniweb does. Google rates daniweb higher than my site due to links. So type in "dance teacher country raleigh nc" and you will see that … | |
Re: If the page does not load automatically you may need to add index.php to the DirectoryIndex directive in the apache conf file. Find your http.conf file, probably in this directory: C:\NEMO\Apache Group\Apache\conf Open http.conf and do a text search for DirectoryIndex The line should look something like this: DirectoryIndex index.html … | |
Re: Try [URL=http://filezilla.sourceforge.net/]FileZilla[/URL] | |
Re: Maybe you didn't post all your code.... But I don't see where you have retrieved your variables from $_POST. You will either need to assign them at the top of the script like this: [PHP]$firstName = $_POST['firstName']; $lastName = $_POST['lastName']; etc....[/PHP] or use the $_POST variables in your query: [PHP]$query="INSERT … | |
Re: Have you looked at this [URL=http://colormixers.com/mixers/cmr/?color=6C3A23]page[/URL]? | |
Re: You can use explode to create an array from $name (users input) like so: [PHP]$name = $_POST['name']; $name_arr = explode(' ', $name);[/PHP] then create a seperate query for each search term in your array: [PHP]foreach($name_arr as $key => $name) { $query="SELECT * FROM staffpub WHERE"; $query.=" authors LIKE '%$name%'"; $query.=" … | |
DaveSW I hope you will help me :) At this [URL=http://www.AgentsWarZone.com/forum/home.php]site[/URL]. There is a vertical menu on the left side of the page. It uses some javascript for styling and animation. It works fine and looks good in firefox, but in IE as you hover over the different menu options … | |
Re: There is more than one way to do this. Do you want to use an i-frame (probably not)? If not this is one way: [HTML]<html> <head> stuff.. </head> <body> template stuff... <!-- time for user content --> <?php include_once('user_content.php'); ?> more template stuff... </body> </html>[/HTML] As far as I know … | |
Re: Could you post your code pls. It will be much easier to help you if we can see your code. Let's start with the page you use to create the database and table. | |
Re: It would be cool if you posted your code. That way noone would have to guess if they didn't understand your description of the problem... | |
Re: Its kind of hard to tell since there is a scripting language involved, but we definitly should not be able to see the following in your source code: [CODE]<% if($mc->hasVirtualTours() && $mc->hasOpenHouses()) { $cellWidth = 25; } else if(!$mc->hasVirtualTours() && !$mc->hasOpenHouses()) { $cellWidth = 50; } else { $cellWidth = … | |
Re: If you empty (TRUNCATE) the table it will go back to zero. | |
I have a suggestion for any forum that deals with job offers. How about locking posts that are more than a month old? [RANT] When I come to the forum I browse thru most of it. The only places I don't check very often are: software development, tech talk, and … | |
Re: Try this: [CODE]<input type=\"radio\" name=\"question[]\" value=\"1\">$row[2]<br /> <input type=\"radio\" name=\"question[]\" value=\"2\">$row[3]<br /> <input type=\"radio\" name=\"question[]\" value=\"3\">$row[4]<br /> <input type=\"radio\" name=\"question[]\" value=\"4\">$row[5]<br />[/CODE] You also may need to add this somewhere: [PHP]$My_Array[] = $_POST['question[]'];[/PHP] or maybe just: [PHP]$My_Array[] = $_POST['question'];[/PHP] can't remember lol. | |
Re: I don't know perl, but I bet if you go to google and search for "perl contact form" you will find something to work for you in the first 5 or so results. Uh oh I think we might get another forum :p at Dani | |
![]() | |
Re: You can escape problematic characters with \ so to have a % inserted into the database it would have to look like \% in the query. You can read more about it [URL=http://dev.mysql.com/doc/mysql/en/string-syntax.html]here[/URL]. There is also a high probability that VB (I'm not familiar with VB) will have a function … | |
Re: [PHP]$message = "$name$teamname$email$tiebreaker$team\";[/PHP] I think should be this: [PHP]$message = "$name$teamname$email$tiebreaker$team";[/PHP] or is that the first error you fixed? Try echoing all your vars to the browser so you can see what they look like. [PHP] echo($_POST['name']); echo($_POST['teamname']); etc... [/PHP] My guess is one of the _POST vars is not … | |
I got past my earlier jaggies issue :) and now I'm trying to decide on some colors. The one thing I would like to keep in this pic is the red circle, I'm open to changing other stuff though. What does everyone think? What colors should I use? | |
I would like to smooth out some jaggies in a picture without making it too blurred, does anyone have any suggestions? | |
Re: We were having fun watching you post to yourself :p | |
The End.