Symbianize Forum

Most of our features and services are available only to members, so we encourage you to login or register a new account. Registration is free, fast and simple. You only need to provide a valid email. Being a member you'll gain access to all member forums and features, post a message to ask question or provide answer, and share or find resources related to mobile phones, tablets, computers, game consoles, and multimedia.

All that and more, so what are you waiting for, click the register button and join us now! Ito ang website na ginawa ng pinoy para sa pinoy!

Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pasok dito

Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pasok D2

mga master at idol,patulong nmn po,need ko po kxe ng codes about sa evaluation of grades (parang TOR)sa colleges using php/mysql,jquery,ajax,javascript,etc.naghanap na ko sa ibang net,wla ko mahanap eh..

if may maibibigay kayong link,I will appreciate that..thank you!!:pray:
 

Attachments

  • 400154_309044982475277_100001093342455_868710_506914126_n.jpg
    400154_309044982475277_100001093342455_868710_506914126_n.jpg
    7.3 KB · Views: 1
Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pasok D2

another noob question po about sa sms php, meron po bang pang trigger kung sakaling may nagsend na message, automatic reply po kase gusto ko sa system.. at tsaka po pede nya malaman kung anung inquiry ang gusto ng user, kung registration man(mareregister ang number ng cp) o maghahanap ng word ang server sa database, malalaman po niya yun depende sa txt message....salamat po ulet sa reply..

up ko lng po question ko
 
Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pasok D2

mga master at idol,patulong nmn po,need ko po kxe ng codes about sa evaluation of grades (parang TOR)sa colleges using php/mysql,jquery,ajax,javascript,etc.naghanap na ko sa ibang net,wla ko mahanap eh..

if may maibibigay kayong link,I will appreciate that..thank you!!:pray:

Sympre wala talaga yan sa net.. Ipagawa mo nlng
 
Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pasok D2

another noob question po, meron po bang pang trigger kung sakaling may nagsend na message, automatic reply po kase gusto ko sa system.. at tsaka po pede nya malaman kung anung inquiry ang gusto ng user, kung registration man(mareregister ang number ng cp) o maghahanap ng word ang server sa database, malalaman po niya yun depende sa txt message....salamat po ulet sa reply..

since you're using PHP, you need to use ajax,jquery for the auto refresh feature, para auto read niya yung mga recent inbox ng server. once na read na niya, depedende ngayun sa algorithm mo kung via keyword ang gagawin mo. like for example, nagtext ka sa server ng "Define: Hello", sa algorithm mo, nakaset yung Define keyword to look for the phrase on a dictionary. so ayun, you can create the trigger yourself, kasi hindi gateway bound yun.
 
Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pasok D2

since you're using PHP, you need to use ajax,jquery for the auto refresh feature, para auto read niya yung mga recent inbox ng server. once na read na niya, depedende ngayun sa algorithm mo kung via keyword ang gagawin mo. like for example, nagtext ka sa server ng "Define: Hello", sa algorithm mo, nakaset yung Define keyword to look for the phrase on a dictionary. so ayun, you can create the trigger yourself, kasi hindi gateway bound yun.

Sir pag po ba gumamit ako ng Gammu o Ozeki, sa load na lng po ba ang kaltas ng bawat send ng meassage??
thanks sir! :clap:
 
Last edited:
Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pasok D2

Sir pag po ba gumamit ako ng Gammu o Ozeki, sa load na lng po ba ang kaltas ng bawat send ng meassage??
thanks sir! :clap:

yup! sa load na kaltas, kaya mas mainam na gamitan ng unli promo. :)
 
Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pasok D2

mga bossing, pano po ba magupload ng video using php? xampp ang database ko po,
 
Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pasok D2

mga bossing, pano po ba magupload ng video using php? xampp ang database ko po,

pag upload lang, same as other file uploading method din. pero kung displaying, you might wanna take a look at FFMPEG support. or meron na din ata feature yung mga jquery player to display mp4,flv videos without ffmpeg
 
Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pasok D2

pag upload lang, same as other file uploading method din. pero kung displaying, you might wanna take a look at FFMPEG support. or meron na din ata feature yung mga jquery player to display mp4,flv videos without ffmpeg
Ayaw pong magupload kapag ang codes ay yung like sa paguupload ng images.. .. sa pagdidisplay ako na po bahala. basta makapagupload lang po ng video using php, mga 30mb iuupload ko po, Software Engineering po kasi kami ngayon
 
Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pasok D2

set mo yung max upload via htaccess or other methods. pero most of the servers, hanggang 8mb lang
 
Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pasok D2

mga 30mb iuupload ko

baka dahil jan kaya ka nagkaka-problema, try editing your php.ini file and search for this

upload_max_filesize = value in megabytes

pagkaka-alam ko, by default, it is set at 4M, try placing a higher value like 32M or 64M, if the problem still persists, let us know
 
Last edited:
Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pasok D2

128M po ang nakalagay sa php.ini ko,
tas ang type ay 'blob'

Code:
if(isset($_POST['uload']) )
		
		{
			
			$loc = 'videos/';
			
			$name = $_FILES['myfile']['name'];
			
			$tmp = $_FILES['myfile']['tmp_name'];
			
			$newloc = $loc.$name;
			
		        $rn = $_POST['num'];
			
			$sql = mysql_query("UPDATE foods SET video='$newloc'  WHERE Recipe_num='$rn'");				
				
			$count = mysql_affected_rows();
			
				move_uploaded_file($tmp,$newloc);
			
												
					if($count==1)	{
					
					$rn = $_POST['num'];
		
					$sql = mysql_query("SELECT * FROM foods WHERE Recipe_num='$rn'");
			
					$rows = mysql_fetch_array($sql);	
								
					$num = $rows['Recipe_num'];
										
	?><META HTTP-EQUIV="REFRESH" CONTENT="0;URL=tut.php?Recipe_num=<?  echo $num ?>"><?
								
							
					}			
							
					
						
		}

aabangan ko po ulet tong thread nato hahaha
 
Last edited:
Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pasok D2

an additional buuin mo lang yung <?php ?>, and not <? ?>, kasi minsan yung ibang hosts hindi tinatanggap ang ganun, just to be sure... db? kung localhost lang yan, no worries... :)
 
Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pasok D2

:thumbsup::thumbsup::thumbsup: galing mu nmn poh..
 
Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pasok D2

ayaw padin po,, tama naman po yang codes ko, 200+ KB lang inaupload ko pero ang nasasave lang sa DB ay 21B
 
Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pasok D2

meron po ba kayong alam na free plug-in video chat...?????:pray:
 
Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pasok D2

ayaw padin po,, tama naman po yang codes ko, 200+ KB lang inaupload ko pero ang nasasave lang sa DB ay 21B

subukan mo isama to

upload_max_filesize = increase the value according to your needs
post_max_size = value should not be greater than the value you entered for the upload_max_filesize

after changing those lines in php.ini, try restarting wamp...
keep us posted
 
Last edited:
Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pasok D2

ayaw padin po,, tama naman po yang codes ko, 200+ KB lang inaupload ko pero ang nasasave lang sa DB ay 21B


Have you tried downloading it uli? to make sure that your 21B is the exact file?

Pag BLOB kasi yong datatype mo. Yong images (videos) will be converted into string equivalence. Kaya medjo magaan nalang yan. Hindi yan yong file ang ipinasok sa database.
 
Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pasok D2

ok napo yung. ..hp.ini ko, xampp ang gamit ko. Anu po ba ang tamang data type for videos?tama poba yung codes ko sa taas?
 
Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pasok D2

cnu po marunong mag integrate po ng cbox.ws sa facebook.com ? Panu po pwd i integrate ung log in system ng cbox.ws sa facebook?
 
Back
Top Bottom