- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 2
- Posts with Upvotes
- 2
- Upvoting Members
- 2
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
38 Posted Topics
Re: Of-course, Google would never be able to beat Facebook in social media marketing and Facebook would never be able to beat Google in web searching. | |
Re: White hat SEO is an ethical and legal way of optimizing your web pages so that their search engine ranking can be improved. This includes optimizing meta tags, page titles, headings, page names, keywords and off-site optimization techniques such as backlinking via website directories, article marketing, social bookmarking, blog commenting … | |
Re: Simply get a google adsense account.They would provide you the code for ads and all you need to do is to add the code provided by google adsense to your site. | |
Re: Yes definitely, your adsense earnings would definitely increase with the increase in your traffic. Roughly, you earn one dollar after one thousand visitors. From here you can make a rough calculation regarding how much traffic you need to get good earnings. | |
Re: The best way to do your project is to conduct google search regarding speech recognition and then after thoroughly studying all the aspects, you would be able to start this project. | |
Re: The basic purpose of social bookmarking is of-course to bookmark URL's, to create backlinks and generate traffic. Therefore, social bookmarking is at a time a backlink generation activity as well as a social media marketing technique. | |
Re: The basic difference is that the files included by using require function would be included whether or not that statement is being executed but if you use include function, then only when the function is executed on run time, then the file would be included otherwise it would not. Include … | |
Re: Hire an SEO expert and increase the PR of the forum. This would increase your search ranking and secondly, people would visit and post more on your forum to get signatures and publish their websites. | |
Re: You need to use google adwords tool to check the global and local monthly searches against various keywords and also note the level of competition specified by google adwords. Choose the keywords with minimum competition and maximum searches. | |
Re: Facebook and Twitter are really useful for promoting business. I heard about few companies that are doing business purely on the basis of social media marketing and they are doing well. | |
Re: This comparison is totally based upon the product or service you are offering and the promotion material. If you are offering a strong product or service, then PPC would be great for you but in other case, you have to rely on search engine optimization not on PPC. | |
Re: Simply use the following css body { background-attachment:fixed; background-image:url('folder-name/image-name.jpg'); background-repeat:no-repeat; } | |
Re: a in the first line is for link but it would work in the following way. #nav-menu li a{................} This css would be applied to the link whenever it is appeared in the following order. First there must be an element with the id "nay-menu" (#nav-menu), then after that there … | |
Hi I want my signature to be appeared with all of my posts. Right now, it's happening that when I logged in I can view my signatures with all my postings but when I am logged out my signature got disappeared from my posts. Is it possible at daniweb to … | |
Re: Yes you can submit single article to different directories but you have to use the same pen name or author name on all the directories. | |
Re: If you have a jpg,png or other such image and you want to add some text to it, then you can simply create a div with the following css. .txtdiv { position:absolute; left:100px; top:500px; } Don't forget to adjust the pixel values for left and top so that it would … | |
Re: Yes you can become a great programmer, there is no doubt about that. The best approach to become a programmer is to "Learn Something Everyday". This way if you keep learning things on regular basis,then you would start improving and improving and the day would come when you would be … | |
Re: You can conduct research regarding security, backup, software development models, quality assurance practices and artificial intelligence. | |
Re: To get heavy traffic on your blog, you need to learn SEO and get good search engine ranking. | |
Re: Just do some google search and you would find the already developed solution. Such solutions are available on the internet. | |
Re: The php function preg_replace has three parameters. You should write like this preg_replace( $value-to-be-replaced, $new-value, $variable-to-be-updated); | |
Re: Height related issues are very common with divs. I suggest you to use tables for the sections that needs height adjustment. | |
Re: Whenever the text box's background color is similar or almost similar to that of the cursor, the cursor starts seeming to be disappeared. You can simply change background color to solve this issue. Additionally, you can try changing the font color as well. | |
Re: I don't think that it would be perfectly possible in <div>, although by using css intelligently, this objective can be achieved up to some extent. I suggest you to create that section in <table> and doing this would be just a piece of cake. | |
Re: It's not a good practice to use <p> within <ul> tag. Within <ul>, always use <li> tag. You can create css for <li> tag to make it look like the way you want. | |
Re: Both would perform the same task. When using <div align="center">...</div>, you are fulfilling your objective by using HTML only but in case of <div style="text-align:center">..</div> you are mainly relying on CSS to make the content center aligned. Other than that, there is no difference between the two, I think | |
Re: Remember that you can use custom Javascript code within Jquery's block of code and this task is really simple using custom Javascript. Really simple!!!!!!!!!!!!! | |
Re: Try after removing the mysql_real_escape_string() function. This function often creates problems on few configurations. | |
Re: Use the following in a javascript function. document.getElementById('id-of-div').innerHTML = 'Code for new text box here'; | |
Re: You can ask questions about image resizing, paypal and other payment system integration, mysql joins, file handling etc. | |
Re: Your use of like clause is perfect as this is the way to search the values in such case. I think the problem is cause by the following line $searchwords = addslashes(htmlspecialchars($_POST['swords'])); Remove addslashes and htmlspecialchars and then try | |
Re: Simply insert the if(isset($_POST)){ before line number 112 and your problem of blank insertion would be solved ![]() | |
Re: First check your posted values by using the following statement. print_r($_POST); If posted values are OK, then execute the query in the following manner. $update = mysql_query("UPDATE resume SET name='$_POST[name]', age='$_POST[age]', sex='$_POST[sex]', mobile='$_POST[mobile]' WHERE id='$_POST[id]' "); | |
Re: Simply do it the following way <form method = "post"> <select name="actor"> <option value="John">John</option> <option value="Tom">Tom Hanks</option> <option value="Harry">Harry</option> </select> <input type="submit" name="btnSubmit" value="Submit" /> </form> <?php echo $_POST['actor']; ?> | |
Re: Always add a field to store quantity of a product available. Every time, a user purchase something, you need to run the query to update the available quantity of that product in the database table. | |
Re: Simply use <br> tag in php code. For example, $myvar .= $Row['fieldname'].'<br>'; | |
Re: Latest versions of php don't support the short php tag you have used. For example, you have used <? echo $c = uniqid(); ?> , such short tags are no more supported in latest php versions, use the complete php tags in the following way <?php echo $c = uniqid(); … | |
Re: I think the main problem is the way you are solving the expression. i.e. $deposit = ($bonus/100*$bonusForm); Instead of above, use the following $deposit = ($bonus*$bonusForm)/100; |
The End.