Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+4
Strength to Decrease Rep
-1
37% Quality Score
Upvotes Received
2
Posts with Upvotes
2
Upvoting Members
2
Downvotes Received
4
Posts with Downvotes
4
Downvoting Members
3
2 Commented Posts
~25.1K People Reached
Favorite Forums
Favorite Tags
Member Avatar for daniel36
Member Avatar for gogs85
0
434
Member Avatar for daniel36

i am working on codigniter . i am developing basic cms.my view code of generating dynamic pages at front end is <ul id="jsddm"> <?php for ($i=1; $i<=$url['10']['10']['10']; $i++) { ?> <li><a href="<?php echo site_url($url[$i]['0']['slug']); ?>"> <?php echo $url[$i]['0']['page_name']; ?> </a> <?php if($url['11'][$i]['11']>0){ ?> <ul> <?php for ($j=1; $j<$url['11'][$i]['11']; $j++) { …

Member Avatar for Nabeel_2
0
6K
Member Avatar for daniel36

I have made a code to upload video with the help of w3schools.but It is not working great to upload mp4 video upto 300MB.Can any one provide me solution? or any opensource script to upload file.

Member Avatar for Vignesh_2
0
166
Member Avatar for daniel36

I want to close my current window in javascript and want a prompt alert to close or stay here when window is closed by me. i have used onbeforeunload property of body tag.

Member Avatar for Troy III
-1
599
Member Avatar for daniel36

I need to open a servey page when a user leave site.I am doing this by opening a popup window using javascript function onbeforeunload. but there is problem that 90% of popup is blocked by browsers.is there any solution for it?

Member Avatar for ndeniche
0
95
Member Avatar for daniel36

I need a link in my project sothat if anybody click on that link ,he remain on same page and the link opened in new tab.for example i have a link <a href="http://www.google.com">google</a> on page mypage.php .when anybody click on google than he will remain on mypage.php and a new …

Member Avatar for daniel36
0
145
Member Avatar for daniel36

The pay is giving error"Sorry, we couldn't retrieve your data. Please try again later.".The url is "https://www.sandbox.paypal.com/webapps/business/?business=dheersinght%40yahoo.com&custom=47&currency_code=USD&item_name=paid&item_amount=9.95&return=http%3A%2F%2Fexample.com%2Fpayment-successful.htm&cancel_return=http%3A%2F%2Fexample.com%2Fpayment-cancelled.htm&notify_url=http%3A%2F%2Fsoftwaresproject.com%2Fpaypal1%2Fpayments.php".

Member Avatar for LastMitch
0
200
Member Avatar for daniel36

Is there any opensource classified website.I am searching it on google from morning but i did not get success.

Member Avatar for TonyG_cyprus
0
138
Member Avatar for daniel36

I am working on a cms type project.In this project when i uses get variable to fetch data from database and display.The layout of website shifted to left.and i am unable to solve this problem.please help me.

Member Avatar for daniel36
0
112
Member Avatar for daniel36

I am trying to convert 08 and 09 to 8 and 9 respectively, but they are not getting converted. I tried 08+0 , 09+0 but the result I obtained in both the cases is 0. The above method is working for 01 to 07 and I am obtaining results as …

Member Avatar for masterjiraya
0
157
Member Avatar for daniel36

i have created a contact form in which captcha is inplemented.the captcha value is stored in session.i am storing value of session in a hidden input field due to ajax.but when i reload the page the session value in hidden field comes ,old value.here is my form- <?php session_start(); ?> …

Member Avatar for Webville312
0
172
Member Avatar for daniel36

I need in a project to be multi language.Can we show the html result or website content in other language from english with the help of google translat api.and how to use it in project.

Member Avatar for daniel36
0
154
Member Avatar for daniel36

i am working on a project.In which I am displaying the transaction list.and if admin click on any of the row then the row will disappear and a new row with form to update that row will open with cancel button.Here admin can update or cancel .if he can cancel …

Member Avatar for AARTI SHRIVAS
0
96
Member Avatar for daniel36

I am first time using like in mysql .but it is giving error.my query with like is $user_query="SELECT * FROM rt_user WHERE rt_user_username LIKE %".$_GET['term']."% OR rt_user_name LIKE %".$_GET['term']."% OR rt_user_description LIKE %".$_GET['term']."% LIMIT 10"; it is giving syntax error.

Member Avatar for dcdruck
0
182
Member Avatar for daniel36

i want to compare dates stored in database in the format yyyy-mm-dd by changing it in unixtimestamp in the mysql query.for this my query is $bquery="SELECT * FROM rt_booking WHERE rt_unit_id='".$_POST['unit_id']."' AND (SELECT UNIX_TIMESTAMP(str_to_date(rt_start_date,'%Y-%m-%d'))>=".$my11." OR SELECT UNIX_TIMESTAMP(str_to_date(rt_end_date,'%Y-%m-%d'))<=".$my22.")"; but it is giving syntax error.

Member Avatar for daniel36
0
137
Member Avatar for daniel36

I am working on a project where admin can book an building unit for a customer.And i require that a month lie between two dates of booking or not for calendar.I am using query for this is "SELECT * FROM rt_booking WHERE rt_unit_id='".$urow['rt_unit_id']."' AND rt_start_date<=".$date11." AND rt_end_date<=".$date22; Here rt_start_date(unixtimestamp) and …

Member Avatar for daniel36
0
136
Member Avatar for daniel36

I am working on a project in which to show booking in caledar form is required.I myself build the calendar.it is showning the booking correctly in choosen color .but when i see calendar next months it shows booked from date 1 to date 12 booked every month .the main part …

Member Avatar for diafol
0
161
Member Avatar for daniel36

I am workin on an project.in which i need to know in what order array is sorted after sortig using function sort($array);

Member Avatar for cereal
0
158
Member Avatar for daniel36

I am working on a project.In this i need to assign values in array with different location of code.first i used the $bd=array('1','420'); $bd=array('2','520'); etc.but when i echo $bd[1]; and echo $bd[2]; only last inserted value(520) is displayed.do you have any solution for it?

Member Avatar for daniel36
0
113
Member Avatar for daniel36

i created while loop in php but it is gone infinite-the c <table width="100%" align="center"> <tr> <td align="center" width="100%"> <table width="95%" border="1px" cellspacing="1" cellpadding="4"> <tr> <?php $count=1; $columns=$no_of_days+2; while($count<=$columns) { if($count=1) { echo "<td colspan='5'>Owner Name</td>"; } if ($count=2) { echo "<td colspan='5'>Unit Name</td>"; } if ($count>2) { $cdate=$count-2; echo …

Member Avatar for daniel36
0
133
Member Avatar for daniel36

I am developing calendar in php.in this i created next and previous button ,but it is not working greate.I used get variable for Next and previous.but only previous button is only working.this is my code- <? if (isset($_GET['nm'])) { if($_GET['nm']==0) { $previous="pm=1"; $next="nm=1"; $month=0; } else { $nm=$_get['nm']+1; $pm=$_GET['nm']-1; $previous="nm=".$pm; …

Member Avatar for daniel36
0
150
Member Avatar for daniel36

I am having the form.php file- <html> <head> <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script> <script src="form.js"></script> </head> <? mysql_connect('localhost','root',''); mysql_select_db('test'); $query="SELECT * FROM user"; $result=mysql_query($query); ?> <div id="contact_form"> <form name="contact" action=""> <fieldset> <label for="txn_unit" id="txn_unit">Txn Unit</label> <SELECT name="name" id="name"> <OPTION value="">SELECT</OPTION> <? while($row=mysql_fetch_assoc($result)) { ?> <OPTION value="<? echo $row['id']; ?>"><? echo $row['first_name']; ?></OPTION> <? …

Member Avatar for nabcoengineer
0
150
Member Avatar for daniel36

I am working on one project in which it is required that in registration field if a user selects a location then the location's logitude and latitude inserted into input field.If possible,Please tell me the way to do this.

Member Avatar for pritaeas
0
125
Member Avatar for daniel36

I am having the form <html> <head> <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script> <script src="form.js"></script> </head> <? mysql_connect('localhost','root',''); mysql_select_db('test'); $query="SELECT * FROM user"; $result=mysql_query($query); ?> <div id="contact_form"> <form name="contact" action=""> <fieldset> <label for="txn_unit" id="txn_unit">Txn Unit</label> <SELECT name="name" id="name"> <OPTION value="">SELECT</OPTION> <? while($row=mysql_fetch_assoc($result)) { ?> <OPTION value="<? echo $row['id']; ?>"><? echo $row['first_name']; ?></OPTION> <? } …

Member Avatar for daniel36
0
126
Member Avatar for daniel36

Displaying date 1970-01-01 instead of desired date. my code is date('Y-m-d',$rtTransaction->getAddedOn()); the date returned by the function is in format '1353658977',Please help me. Thank you.

Member Avatar for daniel36
0
335
Member Avatar for daniel36

I am fetching data from mysql database and using it.but one column 'added_on's value is not fetching other row values of corresponding to 'added_on' value is previewing correctly.i am using it simply echo $vrow['added_on']; .

Member Avatar for AARTI SHRIVAS
0
167
Member Avatar for daniel36

How can i get result between two date from database where date is in unix timestamp.How can i use WHERE clause to get result.I required in a project.

Member Avatar for diafol
0
190
Member Avatar for daniel36
Member Avatar for daniel36

I need to send email from my local server.I lisent that it is possible through gmail server.can anybody tell me how can i send email from my local server throurgh gmail.I have searched on google and did not get appropriate answer.Thank you in advance.

Member Avatar for daniel36
0
108
Member Avatar for daniel36

Please tell me the best way to learn ajax.I want to do crud oprations in database using ajax wihout refreshing the page. thank you in advance.

Member Avatar for daniel36
0
153