This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Place Autocomplete Address Form</title> | |
<meta name="viewport" content="initial-scale=1.0, user-scalable=no"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style> | |
.hideMe{ | |
display:none; | |
} | |
.btn-small { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.js"></script> | |
<script> | |
$(document).ready(function(e) | |
{ | |
<!---************Start: Image Upload Function On select browse Image---> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!---Start: Original Query Output---> | |
<cfquery name="GetAnswerDetails" datasource="10.26.0.40"> | |
SELECT t1.batchId_int,t1.quesId_int,upper(t2.input_vch) as input_vch,t1.type,t1.optionCount_int,t1.text_vch,count(*) as TotalAnswer | |
FROM ymsReport.BatchQuestions t1 | |
join ymsReport.UsersReply t2 | |
on t1.batchId_int = t2.batchId_bi | |
and t1.quesId_int = t2.pId_int | |
and t1.text_vch <> '' | |
where `type` in ('SHORTANSWER','ONESELECTION') | |
group by t1.batchId_int,t1.quesId_int,t2.input_vch,t1.type,t1.optionCount_int,t1.text_vch limit 0,29; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$sql = "delete from GUEST_EVENT | |
where | |
GUEST_ID=$_REQUEST[guestID]"; | |
$dbCards=mysqli_connect("127.0.0.1","root","pinturp1","mycardco_marriage"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<cfsetting showdebugoutput="false"> | |
<cfsetting requesttimeout="3600"> | |
<cfquery name="GetUsers" datasource="TestDB"> | |
SELECT * FROM shema_users | |
</cfquery> | |
<cfset q= queryNew("UserName,EmailID,Password,UserType,Status")> | |
<cfset filename = expandPath("ExcelFile.xls")> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<cfcomponent> | |
<cffunction name="GetMtDetails" access="remote" returnformat="plain"> | |
<cfset sdate = "#dateformat(sdt,'yyyy/mm/dd')# 00:00:00" /> | |
<cfset eDate = "#dateformat(edt,'yyyy/mm/dd')# 23:59:59" /> | |
<cfquery name="TotalMessages" datasource="Test"> | |
SELECT COUNT(*) as CountMessages FROM sms_Delivery | |
WHERE | |
DateSent_dt BETWEEN '#sdate#' AND '#eDate#' | |
</cfquery> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
//****** Function for generate random character *****************************/ | |
function randomGenerator($strlength) | |
{ | |
$str="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"; | |
$strshuf=str_shuffle($str); | |
$start=rand(0,strlen($str) - $strlength); | |
return substr(str_shuffle($strshuf),$start,$strlength); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<cfoutput> | |
<cfset api_key = "408300609288755"/> | |
<cfset secret_key = "86f3386be0df8c40dab97c8af3c0d237"/> | |
<cfset appID = "408300609288755"/> | |
<cfhttp url="https://graph.facebook.com/oauth/access_token" result="GetAccessToken"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<cfoutput> | |
<!---You can fine app_key and secret_key by creating a account with facebook and make these by creating app for your website---> | |
<cfset api_key = "408300609288755"/> | |
<cfset secret_key = "86f3386be0df8c40dab97c8af3c0d237"/> | |
<cfset appID = "408300609288755"/> |
NewerOlder