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.

~8K People Reached
Favorite Forums
Favorite Tags
Member Avatar for Drugsxxx

Hi I was wondering how to do "for" loop in svg, i need it to do something like this: 500 rectangles i rows, simple black rectangels. I did this with Canvas but i dont know how to make it with svg. Could you help me with this??

Member Avatar for jaumetet
0
5K
Member Avatar for Drugsxxx

I looking for some tutorial that will show me how to send data to .json file and save it one after another like: data1,data2,data3 data1,data2,data3 ...and so on Also i would like to know do i need jQuery and is it hard to use??

Member Avatar for Drugsxxx
0
189
Member Avatar for Drugsxxx

down vote favorite I would like to draw Bezier Curves in SVG, and i know that the code looks like: path.setAttributeNS(null, "d", "M5,5 C5,45 45,45 45,5" but what to do if i want to give attributes on page i mean like: circ.setAttributeNS(null, 'cx', x); circ.setAttributeNS(null, 'cy', y); circ.setAttributeNS(null, 'r', bokU); …

Member Avatar for Drugsxxx
0
128
Member Avatar for Drugsxxx

Hi i have some variables in one file - index.php looking like this: [CODE] $kPoln = floor(($getPoln*255)/$max); $kPolnW = floor(($PolnW*255)/$max); $kWsch = floor(($getWsch*255)/$max); $kPoldW = floor(($PoldW*255)/$max); $kPold = floor(($getPold*255)/$max); $kPoldZ = floor(($PoldZ*255)/$max); $kZach = floor(($getZach*255)/$max); $kPolnZ = floor(($PolnZ*255)/$max);[/CODE] and i want to send them to another file - image.php - …

Member Avatar for diafol
0
322
Member Avatar for Drugsxxx

I dint know how to title this but... I`ll start from begining, i have a .txt file loking like this: 2011-11-14 15:39:51,Polnoc 2011-10-13 15:41:54,Polnocny-Wschod 2011-10-14 15:43:04,Wschod Then there is a code that shows data from last mont,week,day looking like this: [CODE]$lines = file('Kier.txt'); $monthlist = ""; $weeklist = ""; $daylist …

Member Avatar for diafol
0
124
Member Avatar for Drugsxxx

Hi i have a code that shows me some repitnig data from .txt file. Code looks like: [CODE]$getText = file_get_contents("Kier.txt", true); $Poln = substr_count($getText ,"Polnoc"); $PolnW = substr_count($getText ,"Polnocny-Wschod"); $Wsch = substr_count($getText ,"Wschod"); $PoldW = substr_count($getText ,"Poludniowy-Wschod"); $Pold = substr_count($getText ,"Poludnie"); $PoldZ = substr_count($getText ,"Poludniowy-Zachod"); $Zach = substr_count($getText ,"Zachod"); $PolnZ …

Member Avatar for diafol
0
122
Member Avatar for Drugsxxx

Is it pasible to find all occurrences of strings "North" and "North-East" in some txt file and save number of occurrences in some variable??

Member Avatar for Drugsxxx
0
2K