Posts
 
Reputation
Joined
Last Seen
Ranked #4K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
50% Quality Score
Upvotes Received
3
Posts with Upvotes
3
Upvoting Members
3
Downvotes Received
3
Posts with Downvotes
3
Downvoting Members
3
1 Commented Post
0 Endorsements
Ranked #3K
~25.4K People Reached
Interests
Web Development
PC Specs
Web Development
Favorite Tags

103 Posted Topics

Member Avatar for azegurb

Hi there, recently I have created stored procedure in **Postgres Sql** which deals about with hashing passwords. When used via **pgAdmin** tool it works like a charm as stated below. SELECT horeca_user.update_token( 1, //user_id 1, //type 'sdsfsdfs' //token ) I have also installed extension **pgcrypto**. It works when called via …

0
249
Member Avatar for azegurb

I want to learn how HTTP PUT method is used with PHP? I googled at the web and found some tutorials about it with cURL. But i dont know how to use it (Like REST API). Can anyone help me? Thank in advance

Member Avatar for cereal
0
269
Member Avatar for azegurb

Hi All, I have written small slideshow script in Javascript with slice effect. I did functunality such pause function on mouseover. but when i mouseover the slide it crashes (if slice effect had gone it stops normally). what may be the problem. can anyone help me plzzz. Thanks in advance. …

Member Avatar for azegurb
0
324
Member Avatar for azegurb

Hi there, i have a piece of code which works in mozilla well but in chrome doesnt. function yoxi(){ var xhr = new XMLHttpRequest; xhr.open("GET", "yoxi.php", false); xhr.send(null); // alert(xhr.responseText) } function getirus(){ var xhr = new XMLHttpRequest; xhr.open("GET", "getirus.php", false); xhr.send(null); document.getElementById('onlineus').innerHTML=xhr.responseText; } setInterval(yoxi, 5000); setInterval(getirus, 5000); setinterval doesnt …

Member Avatar for Taywin
0
277
Member Avatar for azegurb

Hi all, i have web application and login form. i would like when i exit (logout) it automatically logs out from all devices (or browsers or PC). Can anyone help me?

Member Avatar for broj1
0
262
Member Avatar for azegurb

Hi all, I have one problem on selecting larga data from mysql. I have inserted large data to mysql, and all data was inserted. I see it from phpmyadmin. but when i select that record from database it cannot display whole data.it doesnt show the end part of the data. …

Member Avatar for GliderPilot
0
185
Member Avatar for azegurb

hi there, this is my class that uses preg_replace_callback I know that when this function used in class i do like that **preg_replace_callback('|(\d{2}/\d{2}/)(\d{4})|',array(&$this, 'next_year'), $text); ** but i dont understand & in front of $this statement if i dont write the & reference operator in front of this it also …

Member Avatar for azegurb
0
167
Member Avatar for azegurb

hi there, I have build one site about online appointments of pasients for dentist. i would like to create such a event scheduler like http://www.dhtmlx.com/docs/products/dhtmlxScheduler/sample_basic.shtml but additionally with copy and paste events. the original program is not web based. the working of that program is below. http://www.youtube.com/watch?v=ln_b4mB85Es&feature=youtu.be is it possible …

0
145
Member Avatar for azegurb

Hi all, I have taken from net drop down menu (Drop down chrome menu). it is written in Object oriented background. but i would like to get it simple and concise. i wrote it in a prosedural background again. below is original script. 1-is HTML <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML …

Member Avatar for LastMitch
0
301
Member Avatar for azegurb

Hi all, I have taken from net drop down menu script my web page is medistyle.az. It works perfectly but when i look up code i cannot understand one thing there below is code (js. file) var menu=function(){ var t=15,z=50,s=6,a; function dd(n){this.n=n; this.h=[]; this.c=[]} dd.prototype.init=function(p,c){ a=c; var w=document.getElementById(p), s=w.getElementsByTagName('ul'), l=s.length, …

Member Avatar for azegurb
0
165
Member Avatar for azegurb

Hi there, recently i lost most of my information and i need to get it back. I need data recovery program. does any suggest me data recovery program better than easyrecovery?

Member Avatar for caperjack
0
209
Member Avatar for azegurb

Hi all, I have taken a script about **sliding text** from net. It has usage method. but inside it there is function that has four parameters and one of them was used. I dont understand it. Can you help me to understand it? below is script. in this script i …

Member Avatar for azegurb
0
130
Member Avatar for azegurb

hi All, I have question around Douglas Crockford "method" method. Function.prototype.method = function (name, func) { this.prototype[name] = func; return this; }; function azerizor(value) { this.value=value; } azerizor.method('toString', function () { return this.value; }); var me = new azerizor('salam').toString(); alert(me); this is it. But here arises question regarding **return this**? …

Member Avatar for azegurb
0
98
Member Avatar for azegurb

Hi all. i would like to have fulltext search in my news site. I have added fulltext to the **text** column in my news table. but though it cannot grab two or more phrases at a time from database. the engine is MyISAM. what might be the problem? if possible …

Member Avatar for azegurb
0
134
Member Avatar for azegurb

Hi All, I have code that dynamically retrieves data with jquery AJAX. when i want to insert data into database via PHP **$_POST** method it cannot grab `select tag` (option) value in Mozilla and Chrome. But it works perfectly in IE. Below is my code. <?php if($_GET['func'] == "drop_1" && …

Member Avatar for Biiim
0
185
Member Avatar for azegurb

Hi all, i have taken from net script that it has curriying function which itself return function. But i dont understand why before [B]\$arg[/B] is added backslash. the same as on lines 10, 13, 19 and so on. [CODE]function add($a, $b) { return $a + $b; } $az=""; function _curry( …

Member Avatar for azegurb
0
236
Member Avatar for azegurb

I have taken from net html script it displays in all browsers correctly but in OPERA. Can anyone help me to find out problem. may be smth wrong with its javascript here us url: [URL="http://axundzade.info/templateproblem/"]http://axundzade.info/templateproblem/[/URL]

Member Avatar for Fest3er
0
117
Member Avatar for azegurb

Hi all, I have taken from net chained select script. here is all PHP and Javascript files but i dont understand one thing there. index.php file [ICODE]<?php include('db.php'); include('func.php'); ?> <!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>Chained Select Boxes using …

Member Avatar for azegurb
0
236
Member Avatar for azegurb

hi all, I have installed wamp server and so i would like that another computers on the network can open my webpages. i did the followings i changed my ets/host file i added the follwing 192.168.1.34 homeserver.lan 192.168.1.34 *.homeserver.lan but it didnt allow the other computers join. if possible pls …

Member Avatar for Ninci
0
194
Member Avatar for azegurb

Hi all again, i have read tutorial about javascript classical inheritance [B]Douglas Crockford[/B] wrote. But i did an example for the reason practizing as it showed in his page [URL="http://www.crockford.com/javascript/inheritance.html"]http://www.crockford.com/javascript/inheritance.html[/URL] for ex i did the following example. [CODE]<!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" …

Member Avatar for azegurb
0
137
Member Avatar for azegurb

Hi all, I have taken tutorial from net. but i didnt understand one thing correctly what does this [CODE] done:function(f){ postaction=f || postaction //remember user defined callback functions to be called when images load }[/CODE] and what does || sign mean there. Thanks for attention! here is [CODE]function preloadimages(arr){ var …

Member Avatar for azegurb
0
111
Member Avatar for azegurb

Hi all, I am newbie in CSS and created 3 column layout. But what i want is that left and right columns to be fixed but only center fluid. Below is my code. but there are still problems with it. Can anyone one help me or it is only possible …

Member Avatar for simplypixie
0
239
Member Avatar for azegurb

i installed nivo slider with thumbnail into the web page i created. But if i multiple the amount of pictures they shift down to the second row and they stacks over each other. Can anyone help me so that to make thumbnails only desired amount. for ex if amount of …

0
72
Member Avatar for azegurb

Hi all, I have taken from net MVC tutorial, but it is in German language. Can anyone explain it me why there were joined two superglobal? What is a purpose? its below [CODE]<?php // unsere Klassen einbinden include('classes/controller.php'); include('classes/model.php'); include('classes/view.php'); // $_GET und $_POST zusammenfasen, $_COOKIE interessiert uns nicht. $request …

Member Avatar for diafol
0
3K
Member Avatar for azegurb

hi all, I have script that sums all textboxes value from dynamically added row, but still i have problem with the script. below listed two version of script [CODE]<!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" xml:lang="en" lang="en"> <head> <title></title> <script type="text/javascript"> /*<![CDATA[*/ function addRow() { // grab …

Member Avatar for Airshow
0
298
Member Avatar for azegurb

Hi all, I have taken slide show script from net. But There some functions i cannot understand here is script [CODE]<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd" > <html lang="en"> <head> <title></title> <script> var interval = 1500; var random_display = 0; var imageDir = "my_images/"; var imageNum = 0; imageArray …

Member Avatar for azegurb
0
160
Member Avatar for azegurb

Hi all i am newbie in PHP I would like to learn how to create simple admin panel via PHP if possible pls help me i am very in need of this script with explanation Thans beforehands

Member Avatar for akshayphp
0
944
Member Avatar for azegurb

hi i have read PHP pro patterns and desing book. and i read this chapter but i didnt understand. [CODE]abstract class DomainObject { private $group; public function __construct() { $this->group = static::getGroup(); } public static function create() { return new static(); } static function getGroup() { return "default"; } } …

0
71
Member Avatar for azegurb

hi, All. I know that how to use public, protected and private variables. for ex: public i can use it another class, protected i can use in main and being inherited class and private only the class where it declared. but i dont understand what is purpose to it public, …

Member Avatar for MooGeek
0
124
Member Avatar for azegurb

hi all, i have search form that retrieves data from database. and i have select options. when i choose with only [CODE]select option[/CODE] it can populate data from database. but i want to retrieve data from database with both input tag (by typing into it) and select tag it cannot …

Member Avatar for azegurb
0
193
Member Avatar for azegurb

hi all, i am looking for best mp3 script form mp3 gallery. can you give advise me. or is it easy to build up it from scratch? thanks for attention

Member Avatar for fixphperrors
0
54
Member Avatar for azegurb

hi all, I have built search form that it retrieves information from database. for ex: when i click axtar (search) button it retrieves normally but when i click ENTER button via keyboard instead of axtar (search) button but it only displays results with white blank page here is web page …

Member Avatar for Airshow
0
106
Member Avatar for azegurb

Hi all, I have HP pro 4515s laptop. I can install both WinXP and Win7 from disks. but when OS is ready (has installed) i put disk into CD/DVD drive it dont read. what may be the problem? Thanks for attention

Member Avatar for jingda
0
51
Member Avatar for azegurb

Hi All, I design my site. But i have problem in mozilla. it works fine in IE but in mozilla it has additional line below main line. My site is [url]www.piramida.az[/url], my CSS is [CODE].toplinks {border-right-style: dotted; border-right-width: 1px; border-color: #8CA7BA} .rightlinks {border-bottom-style: dotted; border-bottom-width: 1px; border-color: #ffffff} .menuust {font-family: …

Member Avatar for azegurb
0
356
Member Avatar for azegurb

I am confused about &reference operator. here i dont understand the call_user_array_func() and referense operator why used here? but can you explain it on my code original source is [URL="http://net.tutsplus.com/tutorials/php/the-problem-with-phps-prepared-statements/"]http://net.tutsplus.com/tutorials/ph...ed-statements/[/URL] i tested it. i want to know what happens there i know this & reference operator but for what reason …

Member Avatar for twiss
0
115
Member Avatar for azegurb

hi All, does anyone knows what does mean [CODE]define('INCLUDE_CHECK',true);[/CODE] below is full script [CODE]define('INCLUDE_CHECK',true); require 'connect.php'; require 'functions.php'; // Those two files can be included only if INCLUDE_CHECK is defined session_name('tzLogin'); // Starting the session session_set_cookie_params(2*7*24*60*60); // Making the cookie live for 2 weeks session_start(); if($_SESSION['id'] && !isset($_COOKIE['tzRemember']) && !$_SESSION['rememberMe']) …

Member Avatar for tomato.pgn
0
286
Member Avatar for azegurb

hi I have script that provides search in multiple sites. But i cannot understand why at the end we use [CODE] return false;[/CODE]? whynot we use return true? [CODE]<script type="text/javascript"> function dosearch() { var sf=document.searchform; for (i=sf.sengines.length-1; i > -1; i--) { if (sf.sengines[i].checked) { var submitto = sf.sengines[i].value + …

Member Avatar for azegurb
0
491
Member Avatar for azegurb

Hi all, I have table in Javascript and it has addrow, deleterow, submit, and functions. when i click it automatically adds new row and it has select option to choose some of them for ex. in added two rows one of them is Motherboard Asus and other is Motherboard Gigabyte. …

Member Avatar for Airshow
1
325
Member Avatar for azegurb

hi all, I cannot understand for what reason and how is used [B]call_user_func_array[/B] Can anyone explain me in a very simple manner what is [B]call_user_func_array[/B]? and with examples if possible Thanks in advance

Member Avatar for Kraai
0
170
Member Avatar for azegurb

hi All I have script that dont has any forms but there used $_POST method I dont understand that function and why there used $_POST method if there is not any Form here is script [CODE]<?php define('INCLUDE_CHECK',1); require "connect.php"; if(!$_POST) { if($_SERVER['HTTP_REFERER']) header('Location : '.$_SERVER['HTTP_REFERER']); exit; } ?> <!DOCTYPE html …

Member Avatar for azegurb
0
113
Member Avatar for azegurb

Hi all. I have script that use two arrays. It pushes original array values to the newly created array. it dont pushes into new array duplicate values. for Ex; the orginal array is [B]var arr=['one','two','three','three'][/B]new array will be var newArr=['one','two','three'] the second three will not copied. but one disadvantage is …

Member Avatar for azegurb
0
103
Member Avatar for azegurb

hi all, i have registration script that registers user according their [B]user ID[/B]. if there more than one user id it returns false and says that this [B]user ID[/B] is taken. but if i submit different user ID and the same email address it accepts. how can i do that …

Member Avatar for azegurb
0
133
Member Avatar for azegurb

hi i have created function that automatically adds rows with chekcboxes. i can create two button that one serves checking all checkboxes and the another one serves for unchecking rows. but i would like to check/uncheck all checkboxes with single checkbox. then i have created checkbox for the purpose to …

Member Avatar for azegurb
1
122
Member Avatar for azegurb

Hi all, I have small bbcode script that works perfectly in IE. but in mozilla it doesn't work here is script [CODE]<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd" > <html> <head> <head> <!-- ... --> <script language="JavaScript" type="text/javascript"> var v=2; <!-- function createTag(tagId,areaId) { // var x=tagId; var txtArea = …

Member Avatar for Troy III
0
91
Member Avatar for azegurb

hi All. I have taken from internet javascript code that add bb tags to the selected words. but in the documentation of this script it is said that without selecting text it must also add bb tags and when add bb tag at the end of text it automatically closes …

0
56
Member Avatar for azegurb

hi All i have taken from internet script that post data with the help of AJAX and PHP below is script [CODE]<html> <head> <script type="text/javascript" src="prototype.js"></script> <script> function sendRequest() { new Ajax.Request("test.php", { method: 'post', postBody: 'name='+ $F('name'), onComplete: showResponse }); } function showResponse(req){ $('show').innerHTML= req.responseText; } </script> </head> <body> …

Member Avatar for scrappedcola
0
100
Member Avatar for tcollins412

if you want to increment row dinamically the best way is to use Javascript

Member Avatar for tcollins412
0
180
Member Avatar for azegurb

hi all i have taken from internet a script that adds and removes rows but i made a little changes to that script that is renumbering rows after deleting. but one problem arises. i can delete all rows by selecting at once except firts row. for ex. i have added …

Member Avatar for Airshow
0
134
Member Avatar for azegurb

I hava script with both $this keyword and without it. Each one does the same thing. I cant understand what does $this do. this with [B]$this[/B] [CODE]class Time { var $sTime; function GenerateCurrentTime(){ $this->sTime = gmdate("d-m-Y H:i:s"); return $this->sTime; } function ShowFutureDate($iAddDays=0){ $this->sTime = gmdate("d-m-Y H:i:s", strtotime("+" . $iAddDays . …

Member Avatar for azegurb
0
108
Member Avatar for azegurb

hi All I hace created job site i writed to my own CSS. but it displays in IE fine like i want. but in Mozilla it displays all borders. how can i do that in displays table like in IE. Thank you very much. this is my site [URL="http://www.karyeram.com"]http://www.karyeram.com[/URL] my …

Member Avatar for azegurb
0
135

The End.