User Profile
Collapse
-
Are you talking about WYSIWYG editors? if so so try http://codex.wordpress.org/TinyMCE may be the languages you require will be there. -
-
Php is executed line by line on the server side, and you can use conditional statements to manage the execution flow.
Code:<?php if($_POST){ mail(.....) } ?>
Leave a comment:
-
-
Yep, I agree but I guess we need a script based solution for this as he/she has mentioned that So there should be a visible time countdown on the page....Leave a comment:
-
Pheddy, What you get on your browser when accessing the url of the web is a rendered HTML output of the php script. So there is no way to call the php header() function from your JS code.
If you need to redirect your page after a certain time, again that is impossible only with PHP. So your best approach for that would be a javascript based redirection with a timer.Leave a comment:
-
I hope you are missing something here. May be first you need to understand the difference between the server side scripting language and client side scripting language.Leave a comment:
-
I thought your requirement was updating other websites when you put new contents to your website.
So if you don't mind I'd like to explain this.
Sitemap doesn't ping or notify other websites. Sitemap will only help for the Search engine crawlers to find the site contents easily and that is only after they (crawlers) come to your website.
Websites like Tecnorati are blog search engines. There are more...Leave a comment:
-
You can ping to other websites like technorati by writing down your own "XML-RPC" client application. most of the blogging platforms has in built tools for this, but since you have written your own CMS tool you may need to create your own XML RPC client for that. here is an example of how to do it for technorati.
http://techchorus.net/xml-rpc-client...ing-technorati
And if you...Leave a comment:
-
find this line
error_reporting = E_ALL
and modify it with
error_reporting = E_ALL & ~E_NOTICE
save it and make sure to restart the web server too before test it.Leave a comment:
-
-
This error appears because of your PHP error reporting configuration settings. Normally , it appears when your variable is not properly set. There are two ways to fix this issue.
Check if $_POST['VAR_NAME_HERE'] is set before using it.
example:
Code:if (!isset($_POST['VAR_NAME_HERE'])) { //If not isset provide a dummy value here $_POST['VAR_NAME_HERE'] = ""; }
Leave a comment:
-
Hey thanks a lot for the tip. but this is almost 2 year old thread. but still this will help for someone who use windows XP, I guess. anyway I use windows 7 RC1 and Fedora 11. :D...Leave a comment:
-
Your question is not 100% clear to me as you are posting your root problem some where else in the flash forums. anyhow I think you may need a way to read a XML file using using your flash application and also the XML data should be generated dynamically from the database, right?\
your first attempt should start from here. Once it is done post back to the forum.Leave a comment:
-
It's better if you first check the joomla extensions library. may be you are not the first one who creating event registration extention for joomla. I'm assuming that you are trying to integrate this with the existing web site.
http://extensions.joomla.org/...Leave a comment:
-
Hi,
First you should use code tags when posting source codes. Also select the best category from the topic list, really this should goes to the java forum.That way we can help you very easily. Please hang on until one of our moderator move this thread to the java forum. ThanksLeave a comment:
-
I think you may better to follow these tutorials on HTML form markup.
http://www.w3schools.com/html/html_forms.asp...Leave a comment:
-
check box values doesn't appear as the HTML output , did you check the generated html source from the browser view source option ?Leave a comment:
-
The while() loop will keep fetching new rows until mysql_fetch_ass oc() returns FALSE, which means there are no more rows to fetch.
So if you only need to get one row from your mysql query (assuming your query returns only one row) here is the solution.
Code:<?php mysql_connect("localhost","root","") or die(mysql_error()); mysql_select_db("books"); $result = mysql_query("select
Leave a comment:
-
That's true Markus. SF provides a great system for project tracking. But most of those features may not require for small projects.
With my understanding we need (for now);- Source Control system
- Issue/Bug Tracking system
- System for setting up Milestones
- Documentation System
- And a web Site to spread the word about the framework.
Point number 3 and 5 is not available on Google project hosting as I know. correct...Leave a comment:
No activity results to display
Show More
Leave a comment: