- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 3
- Posts with Upvotes
- 2
- Upvoting Members
- 3
- Downvotes Received
- 5
- Posts with Downvotes
- 5
- Downvoting Members
- 3
31 Posted Topics
Re: [QUOTE=fobos;1151850]Hello all, i am stuck on this.. i want to be able to play a video from a mysql database. Currently i can upload the video to mysql (name, type, size, content) and download the file. i have a media player that shows a video, but i have to use … ![]() | |
Re: @ atullalit91 Instead of using any specific hindi font you can use global font which supports UTF-8 its helpful when your site visitors don't have particular font hindi font in their computer.It also able visitors to see your site without downloading any font or without setting into their computer. for … | |
Re: i also want to learn php framework.so please suggest me also which one is good and also easy to understand. thanks | |
Re: Hi, if you want to submit the form by clicking a link (if you want your link works as a submit button) then you have to submit the form by using javascript. [CODE] <script> function myformsubmit() { document.myform.submit(); location.href='submitpage.php'; } </script> <?php echo "<form action='page.php' name='myform' method='post'>"; echo "<input type='text' … | |
Re: Hi, With the permission access based on user/role/group you can also use rewrite url by using .htaccess just give album name into the url instead of id of the album and as far as I think no one can guess the particular album name. so your album can be secure. … ![]() | |
Re: Hi, can you provide your admin details for temporary period of time ? to solve your problem. | |
Hello I want to convert the date formate from Wed Jun 15 2011 00:00:00 GMT 0530 (India Standard Time) to 06/06/2011 I have done something like this [CODE] $chkdt = "Wed Jun 15 2011 00:00:00 GMT 0530 (India Standard Time)"; $month = substr($chkdt,4,3); if($month == 'Jan') $month = '01'; else … | |
Re: hi do you want something like this ? [CODE] <table border="1" onMouseover="this.bgColor='#FFF000'"onMouseout="this.bgColor='#FFFFFF'"> <tr> <td>1</td> <td>2</td> </tr> </table> [/CODE] try this code.may be it will help you. :) | |
Re: Hi, you can try like this [CODE] $yourfield = "NAME"."ADDRESS"; [/CODE] or if you want to separate the fields with comma then you should try this [CODE] $yourfield = "NAME".","."ADDRESS"; [/CODE] hope this will help you out. :) | |
Re: Hi, You can do your search something like this. when user search for 'Harry Potter' in your generic php file you can fire a query with LIKE keyword on title filed or if you want exact result then you can use equalto (=) in your query. so your url will … | |
Re: Hi, I have modified the code of vibhadevit for you. hope this helps. [CODE] <?php $link = mysql_connect('localhost','palak','palak'); $seldb = mysql_select_db('apalgujarati',$link); $getuserqry = mysql_query("select id,name from apal_user"); ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Untitled Document</title> </head> <body> <script language="javascript"> … | |
Re: Hi, You can use google analytics which track all the things as you require. Hope this help. :) | |
Hi, I want to open user's uploaded .doc,.docx,.txt or .pdf as html (open in browser) I can open pdf without doing any extra coding. but i can't open other formates. I want to open files when user click on the link "Show File" at that time file will be open … | |
Re: Hi, I have same problem. I want to open user's uploaded .doc,.docx,.txt or .pdf as html (open in browser) I can open pdf without doing any extra coding. but i can't open other formates. I used above given script by greatunknown. but its not working for me. or i am … | |
Hi, I am using ckeditor. when i work in localhost (in my pc) its working fine in formating and image upload.but when i work with it at server it formating and image upload is not working. for ex. - if i formate font with some style and color and size … | |
Re: [QUOTE]$result = mysql_query("UPDATE testtable SET fname = '$fname', sname = '$sname', `add` = '$add', phone ='$phone' Call_Status = '$Call_Status', eng_id = '$eng_id', eng_cmt = '$eng_cmt' WHERE SRID = '$SRID'");if (!$result) { die("MySQL Query failed with error: " . mysql_error()); }[/QUOTE] I think u missing comma in your query. [CODE]$result = … | |
Hi all, I m newbie in .htaccess i am using .htaccess to make url SEO friendly. I can access admin in localhost of my pc. but when i put all this files to my server i can't access admin. it shows me white blank page. without any message or error. … | |
hi. i want to check expire date with mysql query between start date and enddate. if the end date is bigger then today's date then its good else it didnt display records. can any one please help me out. Thanks in advance. :) | |
hi... i know how to upload video...even i can upload video to specific folder...but my question is user are upload video of any formate.. and i want to convert that video into .flv after uploading... can any one tell me how to do this..?? i will be very thankful to … | |
Re: [QUOTE]could someone fix this line for me ? : PHP Syntax (Toggle Plain Text) 1. echo <a href="example.php">$row["menu_name"]</a>;[/QUOTE] Just use single quot after n before like this. echo '<a href="example.php">$row["menu_name"]</a>'; I hope this will help you. :) | |
Hi, I am saving data to text filed i want to display first 50 characters from that text field. I tried it with left() function with my sql query and also tried it with substr() function in php code also.but i am getting a problem it shows first 50 characters … | |
Re: [QUOTE=cwarn23;1153064]When redirecting them in the first place add into the redirect url [ICODE]"login.php?url=".urlencode(/path/to/page/from.php);[/ICODE] Then on the form you place in the action= parameter the above path which is now in the $_GET tag.[/QUOTE] I have a same question..but i didnt got in this solution..can you please explain it..? Thanks.. | |
hi.. i was working with php 4.2.3 and now i changed php to 5.3.1 now problem is that when i login as a user in my script i got this warning.. [CODE]Warning: Unknown: Your script possibly relies on a session side-effect which existed until PHP 4.2.3. Please be advised that … | |
Re: [QUOTE=kevindougans;1145100]For anyone still using the old "mysql_fetch_assoc" here is something I've just discovered today after about 9 years of PHP'ing and thought I should sahre because I've not seen many open source projects use it (maybe for another reason I'm not yet aware of)... (note: both provide the exact same … | |
Re: [QUOTE=ytregnn;1142757]I have a problem with a script that I bought. I'm trying to put the files in a different directory (different from the original) and for some reason I receive an error message saying; ” File(../../poll/Poll.php) is not within the allowed path(s)”. I've received this answer from the programmer of … | |
Re: [QUOTE=cane23;1142480]i am using the get method to get the id from the url and i am using the post method in the form. i am not using the get method in any forms. it is just being used to get the id from the url and the mode of the … | |
Re: [COLOR="Red"][B]Why You Created So Much Topics for one Question ?This is not a way to ask a question.[/B][/COLOR]:angry: | |
Re: [CODE]In Your second page code $factid = $_REQUEST["factid"]; $pathid = $_REQUEST["pathid"];[/CODE] just assign them in session and you will got in your third page.. do like this in second page.. [CODE]// for fatctid $factid = $_REQUEST["factid"]; $_SESSION['factid'] = $factid; // for pathid $pathid = $_REQUEST["pathid"]; $_SESSION['pathid']= $pathid; [/CODE] and call … | |
hi... i want to do simple addition and subtraction with ajax.. i want to do like when user click on any MRP it will show subtotal of all items but with moving numbers.. for eg. if subtotal is 100 thn user click on mrp rs. 100 thn disply of subtotal … | |
hi... i m trying to get values of more then one select box on same page.. i am showing list of all users with select box..so per user there is one select box... i want to get the value of all select box...which is select or not select... here is … | |
Re: [QUOTE=muralikalpana;1132224]hai.... there is thousands of products is there. now we want to see as a directory wise means (A-Z wise) devide. how to do this. [CODE][B][U]A[/U][/B] [URL="http://apple.com"]Apple[/URL] [URL="http://ant.com"]Ant[/URL] [URL="http://aeroplane.com"]Aeroplane[/URL] [B][U]B[/U][/B] [URL="http://bat.com"]Bat[/URL] [URL="http://ball.com"]Ball[/URL] [URL="http://book.com"]Book[/URL][/CODE] like this......up to z. how to do this? adv thnks.[/QUOTE] just write a query like this.. select … |
The End.