Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~3K People Reached
Favorite Forums
Favorite Tags
Member Avatar for talisien

Hello, Does anyone know how to connect to a ms sql server from a unix platform Below is the code i found. I've setup the slq server and allowed it to accept remote connection. Port 1433 is open for connection and firewall is configered to allow remote connection. The host …

Member Avatar for talisien
0
261
Member Avatar for talisien

I'm trying to out figure how to insert automaticaly a template. when the editor is loaded. <textarea cols="80" id="editor1" name="editor1" rows="10"></textarea> <script type="text/javascript"> //<![CDATA[ CKEDITOR.replace("editor1", { on : { instanceReady : function( ev ) { insert = CKEDITOR.getTemplates('default'); // **getting the template to load** this.setData(insert.templates[0].html); } } }); This should …

0
66
Member Avatar for talisien

Hi all, How do I use data from json in a javascript function? I have something like this! $('#monday').click(function(){ test(); }); function test() { $.getJSON('singleday.php?dld='+ id+'&chkdag=' + 1, function(json) {sday=json}); OtherFunction(); } Now I want to transfer the json date into an other function. something like this function OtherFunction() { …

Member Avatar for talisien
0
198
Member Avatar for talisien

Hi All, I found this code to disable dates in jquery datepicker [CODE]$(function() { $( "#pickdate" ).datepicker({ dateFormat: 'dd MM yy', beforeShowDay: checkAvailability }); }) for the datepicker stuff, and then: var $myBadDates = new Array("10 October 2010","21 October 2010","12 November 2010"); function checkAvailability(mydate){ var $return=true; var $returnclass ="available"; $checkdate …

Member Avatar for Airshow
0
2K
Member Avatar for talisien

[CODE=PHP] <? // This is the directory to list files for. $theDirectory = "upload"; // without the / // Do you want to show directories? change to false to hide directories. $listDirectories = false; if(is_dir($theDirectory)) { echo "<table>"; echo "<tr>"; $dir = opendir($theDirectory); $counter = 1; while(false !== ($file = …

0
71
Member Avatar for talisien

I was just wondering if it would be possible to protect an directory and its content with php http authentication. Let's say I have created for each user an directory and only that user can access the content in that directory using a mysql database table to get access. How …

Member Avatar for talisien
0
95