[Solved] how to display video in a php page [duplicate]

[ad_1] Video: <video width=”320″ height=”240″ controls autoplay> <source src=”https://stackoverflow.com/questions/22879392/Priyanka Chopra – Exotic ft. Pitbull – YouTube.MP4″ type=”video/mp4″> Sorry, your browser doesn’t support the video element. </video> Audio: <audio controls> <source src=”https://stackoverflow.com/questions/22879392/horse.mp3″ type=”audio/mpeg”> Sorry, your browser does not support the audio element. </audio> 5 [ad_2] solved how to display video in a php page [duplicate]

[Solved] Complex C program [closed]

[ad_1] Assuming your pool of characters is sorted and without repetitions (may need some preprocessing), generating the desired strings in lexicographic order is automatic (in the approach I have in mind). Look at the short example of all nonempty strings that can be generated from “ABC” with the restrictions: A AB ABC AC ACB B … Read more

[Solved] sql update (help me )

[ad_1] First, figure out which records need to be updated: select * from tbl_order o inner join tbl_group g on g.grp_id = o.grp_id inner join tbl_indicator i on i.grp_nbr = g.grp_nbr and i.sect_nbr = g.sect_nbr where g.indicat != i.indicat Now, modify the query to update those records with the correct grp_id. Notice that I’ve added … Read more

[Solved] how to get a pc list that have a service running on each pc?

[ad_1] If all computers have powershell installed with remoting enabled, you can try the script below. It also outputs computers that were not reachable so you can retest them later if you want to. If you don’t need it, just remove the content inside the catch-block(or all of try/catch): $out = @() Get-Content “pclist.txt” | … Read more

[Solved] accepting value from either of text boxes [closed]

[ad_1] The javascript validation method in your head tag: function chkTxt(myForm) { if(myForm.txt1.value == ” && myForm.txt2.value == ”) { document.getElementById(‘msg’).innerHTML = ‘error’; return false; } else return true; } You can set the onsubmit attribute of your form tag to call the method like this: <form id=”form1″ runat=”server” method=”post” onsubmit=”return chkTxt(this);”> <div id=”msg”></div> <asp:TextBox … Read more

[Solved] Shell / Makefile Linker

[ad_1] error messages like avr-gcc: No such file or directory Indicate 1 of several things the executable avr-gcc is not installed (properly) and/or the PATH env var does not include the directory that holds the executable the makefile was called incorrectly. Others Here are some things to try When you say “downloaded the makefile”, is … Read more