ajaxCRUD.com

» a PHP class to Create, Read, Update, & Delete from a mysql database table using AJAX

   by loud canvas media

Quick Links:

Quick Examples:


FAQs

Questionasasd
Answer g hd f g hdfhgghfh fgasdgf sdgf sdgfs dfgs dgfsdf gsdfg sdgf sgfs dgfsdgf sdfgs gfsgsdfg sdfgs gfsd sgdg sdgfs dgfs dgf sdgfs dgfs gf sdgfs dgfsd gsdf sdfg sdfg sdfgs dgfsd gsdg sdgfs dgfsdf sdfg sdf...
Sort Order25
Action



Code to Create The Table Above:


	$tblFAQ = new ajaxCRUD("FAQ", "tblFAQ", "pkFAQID");

	#displays
	$tblFAQ->displayAs("fldQuestion", "Question");
	$tblFAQ->displayAs("fldAnswer", "Answer");
	$tblFAQ->displayAs("fldSort", "Sort Order");

	$tblFAQ->omitPrimaryKey();

	#order by fldSort
	$tblFAQ->addOrderBy("ORDER BY fldSort");

	#set some textbox heights
	$tblFAQ->setTextareaHeight('fldQuestion', 50);
	$tblFAQ->setTextareaHeight('fldAnswer', 125);

	#abbreviate the text for the display (no impact on edit)
	$tblFAQ->formatFieldWithFunction("fldAnswer", "abbrivText");

	#actually show to the table
	$tblFAQ->showTable();

	#the callback function to abbreviate the answer text
	function abbrivText($text){
		return substr($text, 0, 200) . "...";
	}


 

"I love ajaxCRUD! It's saved me hours upon hours of typing!"
~Eric Duwenhoegger

What is a commercial website?

A commercial website is a website which purpose is generating revenue or cash flow of any type, and that isn't under a non-profit organization. So if you're selling a product, selling advertisement, selling a service, or just marketing a commercial business, your site is commercial. A company website is also commercial even if it doesn't sell anything, as it's purpose is to front a commercial company.
Close